$(document).ready(function() {
	//IMG Preload
	$('img.rollover').each(function() {
		 jQuery("<img>").attr("src", $(this).attr('src').replace('.gif','-over.gif'));
	});
	
	//IMG Rollover
	$('img.rollover').hover(
		function(){
			if($(this).attr('src').indexOf('-over.gif') == -1) {
				var newSrc = $(this).attr('src').replace('.gif','-over.gif');
				$(this).attr('src',newSrc);
			}
		},
		function(){
			if($(this).attr('src').indexOf('-over.gif') != -1) {
				var oldSrc = $(this).attr('src').replace('-over.gif','.gif');
				$(this).attr('src',oldSrc);
			}
		}
	);
});
