
$(document).ready(function() {
	$("#mainmenu ul li").hoverIntent(
		function () {
			$(this).addClass("over");
			//var minwidth = parseFloat( $(this).css('width'),10 )+20;
			//$(this).find('ul').css({'min-width':minwidth});
			
			if($.browser.msie)
				$(this).find('ul').show();
			else
				$(this).find('ul').slideDown("fast");
		
		},
		function () {
			$(this).removeClass("over");
			if($.browser.msie)
				$(this).find('ul').hide();
			else
				$(this).find('ul').slideUp("fast");
		}
	);
});


