/**
	By: BaelZeK® 2011 
	Start: 23/08/2011 
	Last modification: 24/08/2011 
*/
$(document).ready(function() {

	$(".horizontalmenu1 li").click(function(){
		switch($(this).attr('id')){
			case 'home':
				window.location.href='index.php';
				break;
			case 'escuela':
				window.location.href='scuola.php';
				break;
			case 'cursos':
				window.location.href='corsi.php';
				break;
			case 'alojamiento':
				window.location.href='alloggio.php';
				break;
			case 'precio':
				window.location.href='prezzi.php';
				break;
			case 'galeria':
				window.location.href='galleria.php';
				break;
		
		}
	
	});
	
	$('.botonAccion').click (function(){		
		window.location.href=$(this).find('a').attr('href');		
	});

	

});
