$(function () {
    $(".hoverswap").hover(

                function () {
                    $(this).attr("src", $(this).attr("src").replace(/.jpg/, "-on.jpg")).fadeIn(300);
                },

		        function () {
		            $(this).attr("src", $(this).attr("src").replace(/-on.jpg/, ".jpg"));
		            ;
		        }
	        );
});
