$(document).ready(function(){
	$('li.rollover').hover(function(){
		temp = $(this).find('img:first').attr('src').split("/")
		last = temp.pop();
		last = last.split(".").join("2.");
		temp.push(last);
		$(this).find('img:first').attr("src", temp.join("/"));
	}, function(){
		temp = $(this).find('img:first').attr('src').split("/")
		last = temp.pop();
		last = last.split("2.").join(".");
		temp.push(last);
		$(this).find('img:first').attr("src", temp.join("/"));
	});
});
