// Window control
jQuery(function() { jQuery(".popup").click(function() { window.open(this.href); return false; }); });

// 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;
	});
});

