// Slideshows
$(function() {
	$('#slideshow').cycle({
		pager: '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return 'li:eq(' + (idx) + ') a';
			//return '#nav li:eq(' + (idx) + ') a';
        }
	});
});

// Gallery
$(function() {
	$("a[rel=gallery]").fancybox();
});

// Swap menu
$(function() {
	$('.box').mouseover(function() {
		$(this).css('backgroundImage','url(../images/sfondo_pulsante_on.png)');
		$(this).children().css('color','#000');
	});
	$('.box').mouseout(function() {
		if(!$(this).hasClass('active')){
			$(this).css('backgroundImage','url(../images/sfondo_pulsante.png)');
			$(this).children().css('color','#FFF');
		}
	});
});
