$(function(){

	$("#topMenuBar li").hover(function() { //When menu item is hovered in...
		//Following events are applied to the subnav itself (moving subnav down)
		$(this).find("ul:first").css({visibility: "visible",display: "none"}).slideDown(300); //Drop down the subnav on mouse over
	},function() { //When menu item is hovered out...
		//Following events are applied to the subnav itself (moving subnav up)
		$(this).find("ul:first").css({visibility: "hidden"}); //Move up the subnav on mouse out
	});

});
	// IE6 select list fix -->
	function toggleSelectLists(action) {
	
		var b_version = navigator.appVersion;

		// Check for IE6        
	    if( b_version.indexOf('MSIE 6') > 0 ) {
		    var selectCategory = document.getElementById("selectCategory");
		
			if(selectCategory) {
				selectCategory.style.visibility = action;
			}	
		}
	}
	// <-- End IE6 select list fix
