function titleMouseOver(event) {
	
	var thumbID = $(this).attr("id");
		thumbID = "#" + thumbID + ".project-thumb";

	$(thumbID).toggleClass("project-thumb-hovered");
}

$(document).ready( function() {
	
	$(".project-li").hover(titleMouseOver);
	
});


