$(document).ready(function() {
	$(function(){
		$(".swappy")
			.mouseover(function(){
				var src = $(this).attr("src").match(/[^\.]+/) + "_over.jpg";
				$(this).attr("src", src);
			})
			.mouseout(function() {
				var src = $(this).attr("src").replace("_over", "");
				$(this).attr("src", src);
			});
	});
});
