// code for navigation

$(document).ready(function() {

		//$(".sub").hide(); // hide the sub menus
		
		$("#topNav ul li").hover(function(){
			$(this).children("ul").fadeIn('medium'); // show the sub menu
	
		
		},function(){
			$(this).children("ul").hide(); // hide the sub menu
		});
		
		
	 

});
