$(function(){
	
	/** MENU */
	$('.menu ul li').hover(
		function() {
			$(this).addClass("active");
			$(this).find('ul').stop(false, true).slideDown();
		},
		function() {
			$(this).removeClass("active");        
			$(this).find('ul').stop(false, true).slideUp('fast');
		}
	);
	/** FANCYBOX */
	$(".fancybox").fancybox();
	$(".iframe").fancybox({
		'type': 'iframe',
		'width': '50%',
		'height': '75%'
	});
	$(".gallery a").attr("rel", "gallery");
	$(".gallery a").fancybox();

});
