$(document).ready(function(){
	$("img.rollover").hover(function(){
		$(this).attr('src',$(this).attr('src').replace('Normal','Hover'));
	},function(){
		$(this).attr('src',$(this).attr('src').replace('Hover','Normal'));
	});
});
