$(function(){
	$('body').removeClass('no-js');
	
	$('#mainNav').delegate('li.sibling', 'hover', function(e){
		var hover = e.type == "mouseenter",
		$active = $(this).siblings('.active').children('ul'),
		$hovered = $(this).toggleClass('hover', hover).children('ul'),
		d = 200;
		if(hover){
			!$hovered.length && $active.stop(true).fadeTo(d, 0, hide);
			$hovered.stop(true).fadeTo(d, 1);
		}
		else{
			$active.stop(true).fadeTo(d, 1);
			$hovered.stop(true).fadeTo(d, 0, hide);
		}
		
		function hide(){
			$(this).hide();
		}
	});
	
	if($('body').hasClass('gallery')){
		$(".image_container a").attr('rel','fancybox').fancybox({
			transitionIn: 'elastic',
			transitionOut: 'elastic',
			titleShow: false
		});
	}
});


