$(document).ready(function() {
/*
  $('.dropdown').each(function () {
    $(this).parent().eq(0).hoverIntent({
      timeout: 100,
      over: function () {
        var current = $('.dropdown:eq(0)', this);
        current.slideDown(100);
      },
      out: function () {
        var current = $('.dropdown:eq(0)', this);
        current.fadeOut(100);
      }
    });
  });
*/
  $("a.fancybox").fancybox();

  $("a.fancyiframe").fancybox({
    'transitionIn'		: 'none',
    'transitionOut'		: 'none',
    'autoScale'     	: false,
    'type'				: 'iframe',
    'width'				: 800,
    'height'			: 550,
    'scrolling'   		: 'no'
  });

  $("a.fancyiframe2").fancybox({
    'transitionIn'		: 'none',
    'transitionOut'		: 'none',
    'autoScale'     	: false,
    'type'				: 'iframe',
    'width'				: 720,
    'height'			: 430,
    'scrolling'   		: 'no'
  });
});
