$(function() {
	$('img,:image').each(function() {
		if($(this).attr("class") == "rollover_view") return;
		
		var ofSrc = $(this).attr('src');
		var ovSrc = ofSrc.replace('_of.', '_ov.');
		$(this).hover(function() {
			$(this).attr('src', ovSrc);
		}, function() {
			$(this).attr('src', ofSrc);
		});
	});
});
