(function() {
  jQuery(document).ready(function($) {
     $("img").parent("a").fancybox({
      'transitionIn'  : 'elastic',
      'transitionOut' : 'elastic',
      'speedIn'   : 600, 
      'speedOut'    : 200, 
      'overlayShow' : true
    });
    $(".fancy_map").fancybox({
      'width': '75%',
      'height': '75%',
      'autoScale': false,
      'transitionIn': 'none',
      'transitionOut': 'none',
      'showNavArrows': false,
      'padding': 10,
      '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/'),
        'type': 'swf',
        'swf': {
          'wmode': 'transparent',
          'allowfullscreen': 'true'
        }
      });
      return false;
    });
    $('img').attr('title', '');
    $('.video').tipsy({
      fallback: "Guarda il Video",
      gravity: 'w'
    });
    $(".menu-header li a").mouseenter(function() {
      if ($(this).siblings().size() > 0) {
        $(this).attr('href', '').css('cursor', 'default');
        $('.sub-menu').slideUp('fast');
        return $(this).siblings().slideDown('slow');
      } else if ($(this).siblings().size() === 0 && $(this).parent().parent().siblings().size() === 0) {
        return $('.sub-menu').slideUp('fast');
      }
    });
    if ($('.content').height() > 630) {
      return $('.scrolling').jScrollPane();
    }
  });
}).call(this);

