$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
$(".hnavigationbg,#hsub,#hsub2,#hsub3,#hsub4,#hsub5,#hsub6,#hsub7,#hsub8,#hsub9,#hsub10,#hsub11").hide();
 
	$("#homefeatures").hover( 
	function () { $(".hnavigationbg,#hsub").slideDown("fast"); },
	function () { $(".hnavigationbg").fadeOut("fast"); }
	);
	
	$("#showsub2").hover(
	function () { $("#hsub2").show(); },
	function () { $("#hsub2").hide(); }
	);
	
	$("#showsub3").hover(
	function () { $("#hsub3").show(); },
	function () { $("#hsub3").hide(); }
	);
	
	$("#showsub4").hover(
	function () { $("#hsub4").show(); },
	function () { $("#hsub4").hide(); }
	);
	
	$("#showsub5").hover( 
	function () { $("#hsub5,#hsub6,#hsub7").show();	},
	function () { $("#hsub5,#hsub6,#hsub7").hide();	}
	);

	$("#showsub8").hover( 
	function () { $("#hsub8").show();	},
	function () { $("#hsub8").hide();	}
	);
	
	$("#showsub9").hover(
	function () { $("#hsub9").show(); },
	function () { $("#hsub9").hide(); }
	);
	$("#showsub10").hover(
	function () { $("#hsub10").show(); },
	function () { $("#hsub10").hide(); }
	);

	$("#showsub11").hover(
	function () { $("#hsub11").show(); },
	function () { $("#hsub11").hide(); }
	);

});

