$(document).ready(function(){  
    $(".howbutton").hover(function() {  
         $(this).attr("src","img/how_on.png");  
             }, function() {  
         $(this).attr("src","img/how_off.png");  
     });  
	
	$(".wantbutton").hover(function() {  
         $(this).attr("src","img/want_on.png");  
             }, function() {  
         $(this).attr("src","img/want_off.png");  
     });  
	
	$(".homebutton").hover(function() {  
         $(this).attr("src","img/home_on.png");  
             }, function() {  
         $(this).attr("src","img/home_off.png");  
     });  
 });  