// code for navigation

$(document).ready(function() {
		
		$(".submenuMiddle").parent().parent().mouseover(function(){
			$(this).children().children(".submenuTop").show();
			$(this).children().children(".submenuMiddle").show();
			$(this).children().children(".submenuBottom").show();
			// show the sub menu	
		});		
		
		$(".submenuMiddle").parent().parent().mouseout(function(){
			$(this).children().children(".submenuTop").hide();
			$(this).children().children(".submenuMiddle").hide(); 
			$(this).children().children(".submenuBottom").hide(); 
			// hide the sub menu
		});
		
		
		$(".submenu").hover(function(){
					$(this).parent().children("a").attr({ style: "background: url(img/mainmenu_right_over.gif) no-repeat right top;" });
					$(this).parent().children("a").children().attr({ style: "background: url(img/mainmenu_left_over.gif) no-repeat 0 0; color: #FFF;" });	
			
			 },function(){
				 	$(this).parent().children("a").removeAttr( "style" );
					$(this).parent().children("a").children().removeAttr( "style" );
				
		});

});