// 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
		});
		
	
});



		