// JavaScript Document

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

});

