jQuery(document).ready(function(){  
						   
	setTimeout(function(){ jQuery('#messages').fadeOut(1000); }, 5000);					

	jQuery(".click").click(function(){
		id=jQuery(this).attr("id");
		jQuery('#nav ul:not(#subnav'+id+')').hide();
		jQuery('#nav ul ul').show();
		jQuery("#subnav"+id).toggle();
	} );
      
});