$(document).ready(function(){

	$('body.homepage #header').cycle('fade');

	$("#nav").superfish({
		hoverClass	: "sfHover",
		delay		: 0,
		animation	: {opacity:"show"},
		speed		: "normal",
		oldJquery	: false, /* set to true if using jQuery version below 1.2 */
		disableHI	: false /* set to true to disable hoverIntent detection */
	});

	$("a.sg_popup").click(
		function() {
	
			var href = $(this).attr("href");
			sg_popup = window.open(href,'sg_win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=380,height=500');
			return false;
		
		}
	);

	$("a.incentive_popup").click(
		function() {
	
			var href = $(this).attr("href");
			incentive_popup = window.open(href,'incentive_win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=400,height=250');
			return false;
		
		}
	);

	$('a.commercial').media();

});