
Cufon.replace("#mainContent h2, #mainContentWide h2");

$(document).ready(function(){
	
	var _menuHeight = $("#subNav").height() + "px";
	
	$("li.products").hover(function(){
		
		$("#subNav").stop().css({ height: _menuHeight }).slideDown("fast");
		
	}, function() {
		
		$("#subNav:visible").stop().animate({ opacity:1 }, 600, function(){
			$(this).slideUp("fast");
		});
		
	});
	
	$(".retailLocations").hide();
	$("li.expos a").click(function(){
		$("#findMenu a").removeClass("active");
		$(this).addClass("active");
		$(".retailLocations").hide();
		$(".raceExpos").fadeIn();
	});
	$("li.locations a").click(function(){
		$("#findMenu a").removeClass("active");
		$(this).addClass("active");
		$(".raceExpos").hide();
		$(".retailLocations").fadeIn();
	});
	
	
	$(".thumbImage").click(function(){
		
		var _gettr = $(this).attr("id");
		
		
		$(".primaryImg img:visible").fadeOut("fast",function(){
			
			_imgid = _gettr.replace("thumb", "img");
			
			$("#" + _imgid).fadeIn();
			
		});
		
		return false;
	})
	
	$("#copy_billing").click(function(){
		
		$("#shipping_first_name").attr("value", $("#first_name").attr("value"));
		$("#shipping_last_name").attr("value", $("#last_name").attr("value"));
		$("#shipping_company").attr("value", $("#company").attr("value"));
		$("#shipping_address").attr("value", $("#address").attr("value"));
		$("#shipping_city").attr("value", $("#city").attr("value"));
		$("#shipping_state").attr("value", $("#state").attr("value"));
		$("#shipping_zip").attr("value", $("#zip").attr("value"));
		$("#shipping_phone").attr("value", $("#phone").attr("value"));
		
		return false;
	});
	
	$("#confirmButton").click(function(){
		
		$("#confirmForm").submit();
		
		//$(this).attr("disabled",true);
		
		//return false;
	});
	
});

function popWin(theURL) {
	newWindow = window.open(theURL,'popWindow','scrollbars=yes,width=440,height=475');
	newWindow.focus();
}
