$(function(){
	$('ul.menu li:last').css('border','none');
	$('ul.menu li').each(function(){
		var theSon = $(this).find('ul');
		if(theSon.length==1){
			$(this).bind('mouseenter',function(){
				theSon.fadeIn(250);
			}).bind('mouseleave',function(){
				theSon.fadeOut(250);
			});
		}
	});
});
