


/* slideshow */
function slideShow(elemento){
	if(jQuery(elemento+" > img").length>1){
		jQuery(elemento).slideShow();
	} else {
		jQuery(elemento+" > img").css("opacity","1");
	}
};
function slideShowTxt(elemento){
		jQuery(elemento).slideShowTxt();
};

/* rollover vari */
function rollover(elemento){
	jQuery(elemento).hover(function() {
		jQuery(this).animate({ opacity: 0.70 }, 200, function() {
		    // Animation complete.
		  });
	},function() {
		jQuery(this).animate({ opacity: 1 }, 200, function() {
		    // Animation complete.
		  });
	}); 
}; 
    /* -- gallery prodotti -- */
function GalleryStart(testodettagli) {
      var _corrente=0;
      jQuery(".gallery:first [rel^='galleria']").weboltgallery({ hasdettagli: false, dettaglio_pagination: false, navlength: 760, itemWidth: 83, navciclo: false, autoplay_slideshow: false, theme: "fabris", allow_resize: false, openmodal: false, testo_dettagli: testodettagli,hasdettagli:true });
      if (window.location.hash.length == 0) {
         jQuery(".gallery div a.immaginegrande:first").click();
      }
      else {
         _corrente = "#id_" + window.location.hash.substring(1);

         jQuery(_corrente).click();
      }

      jQuery(window.location).bind(
		"change",
		function (objEvent, objData) {
		   _corrente = "#id_" + objData.currentHash;
//		   if (jQuery('.pp_pic_holder').css('display') != "block") //se  visible non e esegue la chiamata
//		   {
//		      jQuery("#galleria").scrollTop();
//		      //	        jQuery("#containerabaco").css("visibility", "hidden").css("display", "none");
//		      jQuery(_corrente).click();
//		   }
		});
  }


