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

// jQuery current
jQuery(function() {
	jQuery("#sideNav a").each(function() {
		var docPath = document.URL.split("#");
		if(this == docPath[0]) {
			jQuery(this).addClass("current");
		}
	});
});

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

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

