$(function(){
	$(".rollover")
	.hover(
	function(){
		if(!$(this).attr("src").match("_ov")){
			$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/,"$1_ov$2"));
		};
	},
	function(){
		if($(this).attr("src").match("_ov")){
			$(this).attr("src",$(this).attr("src").replace(/^(.+)_ov(\.[a-z]+)$/,"$1$2"));
		};
	})
	.each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/,"$1_ov$2"));
	});
});

