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