﻿//lightbox jquery
$(document).ready(function() {
    $('.linkLightbox').lightBox();

    $('#rotatorHome').cycle({
        fx: 'fade',
        sync: 1,
        speed: 1500,
        timeout: 4000
    });

    $('.menuPrincipale > li').hover(
        function() {
            var temp = $(this).children(".menuPrincipale_liv2");
            temp.css("left", -((temp.width()/2)-($(this).width()/4)));//-((temp.width()/2)-($(this).width()/2))
            //alert(""+temp);
            temp.stop(true, true).fadeIn();
        },
        function() {
            $(this).children(".menuPrincipale_liv2").stop(true, true).fadeOut();
        }
    );

        //$('#galleryPowa1').ppGallery({ maxWidth: '700' });
        //$('#galleryPowa2').ppGallery({ maxWidth: '700' });
        $(".itemProdotto a[rel^='prettyPhoto']").prettyPhoto({ animationSpeed: 'normal', slideshow: 4000 });
        $(".boxGalleryPagina a[rel^='prettyPhoto']").prettyPhoto({ animationSpeed: 'normal', slideshow: 4000 });
});


