$(document).ready(function() {
  $("#mainMenu li").hover(function() {
      $(this).children("ul").hide();
      $(this).children("ul").fadeIn();
      $(this).children("a").addClass('active-dropdown');
  },function(){
      $(this).children("ul").fadeOut();
      $(this).children("a").removeClass('active-dropdown');
  });
  
  	$("a.zoom").fancybox();

	$("a.zoom_inline").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity'	:	0.8,
		'overlayColor'		:	'#333'
	});

	$("a.zoom1").fancybox({
		'overlayOpacity'	:	0.7,
		'overlayColor'		:	'#FFF'
	});
	
	$("a.zoom2").fancybox({
		'zoomSpeedIn'		:	500,
		'zoomSpeedOut'		:	500,
		'overlayShow'		:	false
	});
  
});
