$(document).ready(
	function()
	{
		
		$('.New').hover(
			function(event)
			{
				$(this).find('.NewImg').attr('src','/images/box/buttons/it/nuovo_o.jpg');
			}
		);
		
		$('.New').mouseleave(
			function(event)
			{
				$(this).find('.NewImg').attr('src','/images/box/buttons/it/nuovo.jpg');
			}
		);
		
		
		
		$('.ZeroMiles').hover(
			function(event)
			{
				$(this).find('.ZeroMilesImg').attr('src','/images/box/buttons/it/miglia-zero_o.jpg');
			}
		);
		
		$('.ZeroMiles').mouseleave(
			function(event)
			{
				$(this).find('.ZeroMilesImg').attr('src','/images/box/buttons/it/miglia-zero.jpg');
			}
		);
		
		
		$('.Used').hover(
			function(event)
			{
				$(this).find('.UsedImg').attr('src','/images/box/buttons/it/usato_o.jpg');
			}
		);
		
		$('.Used').mouseleave(
			function(event)
			{
				$(this).find('.UsedImg').attr('src','/images/box/buttons/it/usato.jpg');
			}
		);
	}
);
