$(document).ready(function()
{
	heightProjects	= $("#projects").height();
	heightContent	= $("#content").height();

	if(heightProjects > heightContent) {
		$("#content").height(heightProjects);
	} else {
		$("#projects").height(heightContent);
	}


	$(".project").hover(function()
	{
		$("#"+($(this).attr("id"))+" .project-thumb-cover").css({display:'', opacity:0.8})
	},function()
	{
		$("#"+($(this).attr("id"))+" .project-thumb-cover").fadeOut(50);
	});
});
