$(document).ready(function() {
	// target external links into new windows
	$.getDocHeight = function(){
	    return Math.max(
	        $(document).height(),
	        $(window).height(),
	        /* For opera: */
	        document.documentElement.clientHeight
	    );
	};
	$("#wrapper").css("min-height", $.getDocHeight()-51);
	$("#content img").each(function(index) {
			$(this).before(
				"<div class='section'><h1>"+$(this).attr("title")+
				"</h1><div class='projectinfolink'><span class='projectinfolinkspan'><a href='javascript:return none;' class='toggleinfo'>Project info</a> - </span>"+
				"<a href='"+$("#backtooverview").attr('href')+"'>Back to overview</a>"+
				"</div>"+
				"</div>"
			);
	});
	$('.projectinfo').hide();
	$(".toggleinfo").click(function()
	  {
		$('.projectinfo').slideToggle(600);
		$('html,body')
		        .animate({scrollTop: $('.projectinfo').offset().top}, 300);
	  });
	
});

