$(function(){

	//inizializzazione shadowbox
	Shadowbox.init();
	
	//hover sul menu	   
	/*
	$('ul.menu li').hover(
		function(){
			//$(this).addClass('menuOn');	
			$(this).css({'backgroundColor': '#DFDB18'});
			$(this).children().first().css({'color': '#000'});
		},
		function(){
			//$(this).removeClass('menuOn');
			$(this).css({'backgroundColor': '#72A518'});
			$(this).children().first().css({'color': '#FFF'});
		}
	);
	*/
	
	//toooltip
	$('.california').qtip({
		content: {
			text: $('#california').html(),
			title: {
				text: $('#california').attr('title')
		  	}
		}
	});
	
	$('.dejcluj').qtip({
		content: {
			text: $('#dejcluj').html(),
			title: {
				text: $('#dejcluj').attr('title')
		  	}
		}
	});
	
	$('.badenbaden').qtip({
		content: {
			text: $('#badenbaden').html(),
			title: {
				text: $('#badenbaden').attr('title')
		  	}
		}
	});
	
	$('.mosca').qtip({
		content: {
			text: $('#mosca').html(),
			title: {
				text: $('#mosca').attr('title')
		  	}
		}
	});
	
	$('.piacenza').qtip({
		content: {
			text: $('#piacenza').html(),
			title: {
				text: $('#piacenza').attr('title')
		  	}
		}
	});

});

