
	$(document).ready(function(){
						
		$("select[name=tornata]").change(function(){			
			if ( $(this).val() != '' ) {
				$(this).parents("form").submit();
			}			
		});
		
		$("a.popup").click(function(e){
			e.preventDefault();			
			window.open( $(this).attr("href"), "popup", "'toolbar=0.location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=900,height=700" );				
		});
		
		$("a#btnCerca").click(function(e){
			e.preventDefault();
			$(this).parents('form').submit();
		});
		
		$("#home-buttons .btn").click(function(){			
			location.href = $(this).attr('href');			
		});
		
	});


		
