jQuery(function($) {				
	$('img.reflect').hover(function() {
		$(this).attr("src", $(this).attr("src").replace(/.jpg/, "-over.jpg"));
	}, function() {
		$(this).attr("src", $(this).attr("src").replace(/-over.jpg/, ".jpg"));
	});	
});




