
$(document).ready(function() {
        
	$('#menu a:eq(0)').mouseover(function() {
		$(this).parent().css("background-image", "url(../img/en/menu_1.gif)");
	});

	$('#menu a:eq(1)').mouseover(function() {
		$(this).parent().css("background-image", "url(../img/en/menu_2.gif)");
	});

	$('#menu a:eq(2)').mouseover(function() {
		$(this).parent().css("background-image", "url(../img/en/menu_3.gif)");
	});

	$('#menu a:eq(3)').mouseover(function() {
		$(this).parent().css("background-image", "url(../img/en/menu_4.gif)");
	});

	$('#menu a:eq(4)').mouseover(function() {
		$(this).parent().css("background-image", "url(../img/en/menu_5.gif)");
	});
	
	$('#menu a:eq(5)').mouseover(function() {
		$(this).parent().css("background-image", "url(../img/en/menu_6.gif)");
	});

	$('#menu').mouseout(function() {
		$(this).css("background-image", "url(../img/en/menu_0.gif)");
	});
        
});

