$(document).ready(function(){
	$(".autoSwapImg").mouseover(function(){this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."))});
	$(".autoSwapImg").mouseout (function(){this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."))});

	$(".autoSwapImg2").mouseover(function(){this.firstChild.setAttribute("src", this.firstChild.getAttribute("src").replace("_off.", "_on."))});
	$(".autoSwapImg2").mouseout (function(){this.firstChild.setAttribute("src", this.firstChild.getAttribute("src").replace("_on.", "_off."))});
});
