

// code for navigation

$(document).ready(function() {
		
		$("#navigation li").mouseover(function(){
			$(this).children("ul").show();
			// show the sub menu	
		});		
		
		$("#navigation li").mouseout(function(){
			$(this).children("ul").hide();
			// hide the sub menu
		});
		
		
		$("#navigation ul").hover(function(){
					$(this).parent().children("a").addClass('active');
			 },function(){
				 	$(this).parent().children("a").removeClass( "active" );
				
		});

});