jQuery(function($){

	// Lightbox
	$('#fine-art a').lightBox({
		'overlayOpacity' : '0.6'
	}); 
	
	// Portfolio SubNav  
	var portfolio = $("#access .menu ul li.page-item-10:not(.current_page_parent)");
	
	portfolio.mouseenter(function(){
		$(this).children("ul").stop(true, true).fadeIn();
	});
	if(portfolio.length){
		$("#access .menu ul").mouseleave(function(){
			$(this).children("li").find("ul").stop(true, true).fadeOut();
		});
	}
	portfolio.siblings().mouseenter(function() {
		portfolio.children("ul").stop(true, true).fadeOut();
	});
		
});
