if(document.location.href == "http://www.coolstop.com/mobile/") {
document.location.href="http://mobilemarks.com/mobile/";
}

	$(document).ready(function(){
		$("dd").hide();
		$("dt div").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			return false;
		});
		$("dt a").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			return false;
		});
			$("dt span").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			return false;
		});
	});

	function reload() {
	$("dd").hide();
	}


