/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


window.FPM=window.FPM||{}

FPM.numProdHome=3;
$(document).ready(function(){

    $(".videoPopUp").click(function() {
        $.fancybox({
            'padding'		: 0,
            'autoScale'		: false,
            'transitionIn'	: 'none',
            'transitionOut'	: 'none',
            'title'			: this.title,
            'width'		: 680,
            'height'		: 495,
            'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type'			: 'swf',
            'swf'			: {
                'wmode'		: 'transparent',
                'allowfullscreen'	: 'true'
            }
        });

        return false;
    });


    //ciclo dei prodotti in home
    //nascondi all'inizio tutti quelli dopo il numero visualizzabile';
    //                $('.blocchiProdottiHome>div').each(function(index){
    //                    if(index>=FPM.numProdHome){
    //                        $(this).hide();
    //                    }
    //                });
    //inizio a fare il ciclo
    if($('#blkContProdottiHome').length>0){
        $('#blkContProdottiHome').cycle({
            timeout:       5000,
            speed:1300
        });
    }

    if(  $("a[rel='lightbox']").length>0){
        $("a[rel='lightbox']").fancybox();
    }

    if($('.ad-gallery').length>0){
        var galleries = $('.ad-gallery').adGallery();
    }

//    $('#fissi a').last().css('padding','0px');
});

