/*

$(document).ready(function () {
    
	$('rootMenu').hover(function () 
	{		
	
		$('li.subMenu').slideDown('medium');
		
		$('rootMenu').mouseout(function()
		{
			$('tr.subMenu').slideUp('medium');
		});	
		
	});
	

	
});

*/
/*
$(document).ready(function(){     
   
     $("td.MainMenu_MenuItem").hover(function() { 
		 //When trigger is clicked...  
         //Following events are applied to the subnav itself (moving subnav up and down)  
         
		 $(this).parent().find("tr.MainMenu_MenuItem").slideDown('slow').show(); //Drop down the subnav on click  
   
         $(this).parent().hover(function() {}
		, function(){ $(this).parent().find("tr.MainMenu_MenuItem").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up  
         });  
   
     });  
   
 });  
*/

