
	$(document).ready(function(){
		$('img.rollover, input.rollover').each(function(){
			$(this).hover(function(){
				$(this).attr('src', $(this).attr('src').replace('.gif','_hover.gif'));
			}, function(){
				$(this).attr('src', $(this).attr('src').replace('_hover.gif','.gif'));
			});
		});
		$('a.rollovercss, img.rollovercss, button.rollovercss, input.rollovercss').each(function(){
			$(this).hover(function(){
				$(this).css('backgroundImage', $(this).css('backgroundImage').replace('.gif','_hover.gif'));
			}, function(){
				$(this).css('backgroundImage', $(this).css('backgroundImage').replace('_hover.gif','.gif'));
			});
		});
	});