// JavaScript Document
$(document).ready(function(){
													 
	$('table.lingue tr td').hover(
		function(){
			$(this).css({'background':'url("../images/layout/bg-lingua2.jpg") top center repeat-x'});	
		
		},
		function(){
	
	});
													 
	$('ul#menu li[class!="current"] a').hover(
		function(){
			$(this).animate({'border-bottom':'10px solid #027ec0'},'slow').stop();
		},
		function(){
			
			$(this).animate({'border-bottom':'10px solid #FFFFFF'},'slow').stop();
		});
	
	$('.Prenota table').css({'margin':'auto'});

});
