$(document).ready( function() {
	$("#bottom-nav a").hover(
		function() {
			$("#sub-nav div.shown").removeClass("shown");
			var name = $(this).attr("class");	
			$("#sub-nav div."+name).addClass("shown");
		},
		function() {
		  //$("#sub-nav div.shown").remove();
		 // $("#sub-nav div.shown").removeClass("shown");
	   })
	});
//$("div").fadeOut();
	/*$("#bottom-nav a").hover(
		function() {
			alert( "something" );
		},
		function() {}
	);*/

