$(document).ready(function() {
	$('img.imgswap').hover(function() {
		$(this).attr("src",$(this).attr("src").replace('/off/','/on/'));
	}, function() {
		$(this).attr("src",$(this).attr("src").replace('/on/','/off/'));
	});
});
