
	$(document).ready(function () {
	
	$(".sliding-element a").mouseover(function () {
	$(this).stop().animate({ marginLeft: "20px" }, 500 );
	});
	
	$(".sliding-element a").mouseout(function () {
	$(this).stop().animate({ marginLeft: "0px" }, 500 );
	});
	
	});









	function googleMaps(startPoint)
	{
		
		dest = '&daddr=Via,+Brognolo+11+Rodengo+Saiano+25050+Brescia+Italia&ie=UTF8&om=1&sa=N&tab=lv';
		
		var win = window.open('','map')
		var startPoint = document.getElementById(startPoint).value;
		
		win.location = 'http://maps.google.it/maps?f=d&hl=it&saddr='+startPoint+dest;
	}


