$(document).ready(function(){
	// hover effect for the gallery subnav
	$("#subnav-gall").hide();
	$("#nav-gall").mouseover(
	function () {
		$("#subnav-gall").slideDown("slow");
	});
	
	
	
	
});