	$(document).ready(function() {
		
		//display first product on initial load 
		document.getElementById("default_info").style.display = "block"
		
		//hide all category content divs and show the correct one
		$(".rollover").hover(function() {
			$("#category_content div").hide();
			document.getElementById(this.id+"_info").style.display = "block";
		})
		
		//hide all category content divs and show the correct one for subnav
		$(".sub_nav a").hover(function() {
			$("#category_content div").hide();
			document.getElementById(this.id+"_info").style.display = "block";
		})
	});
