$(document).ready(function() {

	$(".portfolio.entry img").click(function(){
		
		$(this).next().addClass('open');
		$(".entryDetails").not(".open").fadeOut();
		$(this).next().fadeToggle(650);
		$(".portfolio.entry").children(".entryDetails").removeClass("open");
		/*
		$(this).addClass("open");
		$(this).parent().find(".entryDetails").addClass("open");
		$(this).parent().find(".entryDetails.open").fadeIn();
		*/
	});
	
	
	$("body").click(function(){
		//alert('in');
		//$(".entryDetails.open").fadeOut(650).removeClass("open");
	});

	
	
	
})

