/* 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();
};
	
	
/* -- gallery prodotti -- */
function GalleryStart(testodettagli) {
    var corrente;
    jQuery(".gallery:first [rel^='galleria']").weboltgallery({ autoplay_slideshow: false, theme: "leverplan", allow_resize: false,  openmodal: false, testo_dettagli: testodettagli});
    if (window.location.hash.length == 0) {
     jQuery(".gallery div img.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();
        }
    });
}


/* 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.
		  });
	}); 
}; 
jQuery(document).ready(function () {
    jQuery("#frase_header").appendTo("#footer");
});
