/* IMAGE SWAPS  example of usage: give img the .buttonswap class and make sure to get the on (mouse on) and off (mouse off) */
$(document).ready(function(){
	$(".buttonSwap").hover(
	function()	
	 {this.src = this.src.replace("_off","_on");},
	 function()
	 {this.src = this.src.replace("_on","_off");}
	);
});