// jQuery smoothScroll
jQuery(function() {
	jQuery("a[href^=#]").click(function() {
		var scrollTarget = this.hash;
		var $target = jQuery(scrollTarget == "#header" ? "body" : scrollTarget);
		if($target.size()) {
			jQuery.scrollTo($target, 800, { easing:"swing" });
		}
		return false;
	});
});

// jQuery lightBox
jQuery(function() { jQuery("a.lightBox").lightBox(); });

// jQuery listTable
jQuery(function() { jQuery(".listTable tr:even").addClass("even"); });


