/* 2011 GRAPHAS */

$(function() {

	$('ul.hover_menu li:odd').css("margin-left","1em");
	
	$('ul.hover_block li:even').hover(function(){
		$(this).find('img').animate({left:'440px'},{queue:false,duration:128});
	}, function(){
		$(this).find('img').animate({left:'0px'},{queue:false,duration:128});
	});
	$('ul.hover_block li:odd').hover(function(){
		$(this).find('img').animate({left:'-440px'},{queue:false,duration:128});
	}, function(){
		$(this).find('img').animate({left:'0px'},{queue:false,duration:128});
	});

	
	$('ul.hover_menu li:even').hover(function(){
		$(this).find('img').animate({top:'232px'},{queue:false,duration:128});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:128});
	});
	$('ul.hover_menu li:odd').hover(function(){
		$(this).find('img').animate({top:'-232px'},{queue:false,duration:128});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:128});
	});
	
});

