// code for navigation

$(document).ready(function() {

		//$(".sub").hide(); // hide the sub menus
		
		$(".sub").parent().hover(function(){
			$(this).children(".sub").fadeIn('medium'); // show the sub menu
	
		
		},function(){
			$(this).children(".sub").hide(); // hide the sub menu
		});
		
		
		$(".sub").hover(function(){
				
  			   $(this).parent().children("a").attr("id","hovered");

    	 },function(){
			
 			   $(this).parent().children("a").removeAttr( "id" );
 
  		 });
		 		

});




