//rollover

jQuery(document).ready(function($){
	$('img.hover').each(function(){
		$('<img src="'+$(this).attr('src').replace(/(\.[^.]+)$/, '_on$1')+'"/>').hide().appendTo('body');
	});
	$('img.hover').hover(
		function(){$(this).attr('src', $(this).attr('src').replace(/(\.[^.]+)$/, '_on$1'));},
		function(){$(this).attr('src', $(this).attr('src').replace(/_on(\.[^.]+)$/, '$1'));}
	);
});