jQuery(document).ready(function(){
	jQuery('.button').hover(function(){
        jQuery(this).attr("src", jQuery(this).attr("src").replace(".gif", "-on.gif"));
	}, function(){
        jQuery(this).attr("src", jQuery(this).attr("src").replace("-on.gif", ".gif"));
	}); 
}); 
