function ClearFilter() { $(this).css('filter', ''); }

$(document).ready(function(){
	var closetimer;
	
	var narrow = $('#submenu').children('img:eq(0)');
	var submenu = $('#submenu').children('img:eq(1)');
	
	$('.menu ul li:eq(3) a').hover(function(){ 
		$(narrow).hide(); $(submenu).hide(); $('#submenu').show();
		$(narrow).css('height', '0').show().animate({height: '101px'}, 200, function() { $(submenu).show(); });

	}, function(){ 
		$(narrow).stop(true, false); 
		$(submenu).stop(true, false);
		closetimer = setTimeout(function() { $('#submenu').hide(); }, 300); 
	});
	
	$('#submenu').live('mouseenter', function() { clearTimeout(closetimer); })
				 .live('mouseleave', function() { closetimer = setTimeout(function() { $('#submenu').hide(); }, 300); });

});