// 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").addClass('hover2');

    	 },function(){
			
 			   $(this).parent().children("a").removeClass('hover2');
 
  		 });
		 

});
