$(document).ready(function() {

	$("#mainMenu li ul").hide(); 



	$("#mainMenu li").hover(
    function () {
			$(this).addClass("selected");
			
			var newWidth = $(this).children("ul").width();
			if ($(this).width() > newWidth) newWidth = $(this).width()-2;
			
			$(this).children("ul").fadeIn(200);			
			$(this).children("ul").width(newWidth); 
    },
		function() {		
			$(this).removeClass("selected");		
			$(this).children("ul").hide();
		}
	);//hover


});// document ready
