$(document).ready(function(){
	$('#footer a').hover(
			function() {
				$('img', this).attr('src', $('img', this).attr('src').replace('.jpg','_over.jpg'));
			},
			function() {
				$('img', this).attr('src', $('img', this).attr('src').replace('_over.jpg','.jpg'));
			}
	);
})