$(document).ready(function() {
    
    //ricostruisco la tabella del calendario
   var link = "mod=ajax_calendario"
   goToMonth(link) 
    
    $('ul.sf-menu').superfish();
        
    $("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
  
    $("a.fancy").fancybox({
        'hideOnContentClick':true
    });
    
    $("a.popup_privacy").fancybox({
        'hideOnContentClick':true,
        'width'           : 500,
        'height'          : 520,
        'autoScale'       : false,
        'type'            : 'iframe'
    }); 
                   
    $("a.fancy_popup").fancybox({
        'hideOnContentClick':true,
        'width'           : 500,
        'height'          : 500,
        'autoScale'       : false,
        'transitionIn'    : 'none',
        'transitionOut'   : 'none',
        'type'            : 'iframe'
    }); 
    
    $(".video").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/'),
            //'href'           : this.href.replace(new RegExp("[0-9]", "i"), 'moogaloop.swf?clip_id=1'),
            'type'           : 'swf'
        });

        return false;
    });      
});                