$(function(){
	$("ul.projects img").hover(showHover, hideHover);
});

var currentSrc;
function showHover() {
	currentSrc = $(this).attr('src');
	$(this).attr('src', 'default/images/pro_bigger_hover.jpg');
}

function hideHover() {
	$(this).attr('src', currentSrc);
}



