
$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "_hover.png"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/_hover.png/, ".png"));
		}
	)
});

