// Requires jQuery

jQuery(document).ready(function($){
	$('.hover').each(function(){
		
		// Load image
		var src = $(this).attr('src');
		var currSrc  = $(this).attr('src').split('.');
		var ext = currSrc.pop();
		var hoverSrc = currSrc.join('.') + '_hover.' + ext;
		$('<img>').attr('src', hoverSrc);
		
		$(this).hover(
			function (){
				$(this).attr('src', hoverSrc);
			},
			function() {
				$(this).attr('src', src);				
			}
		)
	});
});