$(document).ready(function(){
	
	$('img.rollover').hover(function() {
		
		if ($(this).attr('src').indexOf('_on.') != -1)
		{
			$(this).attr("src", $(this).attr("src").replace(/_on./, "_off."));
		}
		else
		{
			$(this).attr("src", $(this).attr("src").replace(/_off./, "_on."));
		}
	},
	function() {
		
		if ($(this).attr('src').indexOf('_on.') != -1)
		{
			$(this).attr("src", $(this).attr("src").replace(/_on./, "_off."));
		}
		else
		{
			$(this).attr("src", $(this).attr("src").replace(/_off./, "_on."));
		}
	});
});
