$(function() {

	$("article.project").hover(
		function(){$(this).toggleClass("over")}
	).click(function(){
		h = $(this).find("a").attr("href");
		window.location = h;
	})

	$("a[rel='external']").click(function(ev){
		ev.preventDefault();
		window.open( $(this).attr("href") );
	})

})
