$(function(){

	$('.ngg-gallery-thumbnail a').attr('title',$('.ngg-gallery-thumbnail a img').attr('title'));
	
	$("a[rel*=lightbox]").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
	    'showNavArrows' :   true,
		'overlayShow'	:	true
	});

	$('#coin-slider, #coin-slider-home').nivoSlider({
		effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
		slices:1,
		animSpeed:1500, //Slide transition speed
		pauseTime:4000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:false, //Next & Prev
		directionNavHide:false, //Only show on hover
		controlNav:false, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
		controlNavThumbsFromRel:false, //Use image rel for thumbs
		controlNavThumbsSearch: '.jpg', //Replace this with...
		controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
		pauseOnHover:false, //Stop animation while hovering
		captionOpacity:0.8 //Universal caption opacity
	});	
	
	
	hp_slogan();
	

	
});	

function hp_slogan(){
	$('.hide').hide();
	
	$("#menu-menu-sidebar a").hover(function(){
		//alert() ;
		
		var re = new RegExp(String.fromCharCode(224),'g');

		var testo = $(this).text().replace(re,'a').replace(' ','-').replace(' ','-');	
		
		//console.debug(testo);		
		
		switch(testo)
		{
			case 'spa':
			case 'estetica':
			case 'epilazione':
			case 'dimagrimento':
			case 'massaggi':
			case 'capelli':
			case 'yoga':
			case 'sala-meeting':			
			case 'regali':
				$('.hide, #slogan_homepage').hide();
				$('#slogan_'+testo).fadeTo(500,1,function(){
					if ($.browser.msie){this.style.removeAttribute('filter');}
				});
				break;
				
			default: 
				$('.hide').hide();
			  	$('#slogan_homepage').show();
		}
	});


}




