$(function() {
	$(".contentcolumn img.objectimg").click(function(){  

		var i = $(this).attr("rel");
		var projectImage = $("#projectimage");
		
		projectImage.fadeOut(300, function() {
			projectImage.attr("src", i);	
			projectImage.fadeIn(200);

			// CONTENT HEIGHT
			if($("#content").height() < (projectImage.height() + 90)){
				$("#content").height((projectImage.height() + 90));
			}
		});
	});  
});
