$(function(){
	$(".footerImg").mouseover(function(){
		$(this).attr("src", $(this).attr("value") + '_over.gif');
	}).mouseout(function(){
		$(this).attr("src", $(this).attr("value") + '.gif');
	});	
});