// JavaScript Document
//var startIndex = 0;
//var idGall;
//alert(startIndex);
jQuery(document).ready(function() {
	//jQuery('#mycarousel').jcarousel({start: 0,scroll:2});
	jQuery('#pressGall').jcarousel({start: 0,scroll:3,itemFallbackDimension: 300});
	jQuery('#tgall').jcarousel({start: 0,scroll:3});
  
	/*	
	$('#loader').fadeIn();
	//Carica la gall iniziale 
	$('#igall').load('contents/loaderGall.php',function(){
		$('#loader').hide();
		if(jQuery('#igall').children().size()>0) {
		  jQuery('#igall').jcarousel({start: 0,scroll:3,itemFallbackDimension: 300});
	    jQuery('#igall a').lightBox(); 
		}
	});
	*/
	$('#tgall li').click(function(){
	  $('#tgall li').each(function(){
		  $(this).removeClass('active').addClass('off');
		});
		$(this).addClass('active');
	});
	
	$('.overPdf').css({opacity:0});
	$('img.locandina').mouseenter(function(){$(this).siblings('.overPdf').animate({opacity:1},200).css({zIndex:1000})});
	$('img.overPdf').mouseleave(function(){$(this).animate({opacity:0},1000).css({zIndex:1})});
	
});

