$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.gif/, "-over.gif"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.gif/, ".gif"));
		}
	);
});
$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "-over.png"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.png/, ".png"));
		}
	);
});
$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.jpg/, "-over.jpg"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.jpg/, ".jpg"));
		}
	);
});
