$(function() {
	$('a').focus(function(){
		$(this).blur();
	});
	$('img.menu_button').hover(function() {
	    $(this).fadeTo(300, 0.9);
    }, function() {
		$.dequeue($(this).get(0), "fx");
	    $(this).fadeTo(300, 1);
	});
    $('#lang img').css('opacity', 0.5);
	$('#lang img').hover(function() {
	    $(this).fadeTo(300, 1);
    }, function() {
		$.dequeue($(this).get(0), "fx");
	    $(this).fadeTo(300, 0.5);
	});
});

window.onload = function(){
    $('.mb1').css('background-color', '#6A010A');
}
