/*
$(document).ready(function() {

	$('img.rollover').hover(function() {
		img = $(this);
		curImg = $(this).attr('src');
		rplImg = curImg.replace('-off','-over');
		$(this).attr('src',rplImg);
	},function() {
		$(img).attr('src',curImg);
	})		

	$('input.rollover').hover(function() {
		input = $(this);
		curInput = $(this).attr('src');
		rplInput = curInput.replace('-off','-over');
		$(this).attr('src',rplInput);		
	},function() {
		$(input).attr('src',curInput);
	})

});
*/
