// 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 lightBoxjQuery(function() { jQuery("a.lightBox").lightBox(); });
