// JavaScript Document

$(document).ready(function(){
	$("#wrapper img[src *='-off.']").hover(function(){
		$(this).attr("src",$(this).attr("src").replace("-off.","-on."));
	},function(){
		$(this).attr("src",$(this).attr("src").replace("-on.","-off."));
	})
});
