$(function() {
	$('a').focus(function(){
		$(this).blur();
	});
	$('img.menu').hover(function() {
	    $(this).fadeTo(150, 0.90);
    }, function() {
        $.dequeue($(this).get(0), "fx");
	    $(this).fadeTo(150, 0.25);
	});
});
