$(document).ready(function(){	
   	$("#homeowner").hover(
	 function(){$(this).attr("src", "images/home_over.gif");},
	 function(){$(this).attr("src", "images/home.gif");}
	 );  

   	$("#farmer").hover(
	 function(){$(this).attr("src", "images/farmer_over.gif");},
	 function(){$(this).attr("src", "images/farmer.gif");}
	 );  

   	$("#property").hover(
	 function(){$(this).attr("src", "images/property_over.gif");},
	 function(){$(this).attr("src", "images/property.gif");}
	 );  

   	$("#business").hover(
	 function(){$(this).attr("src", "images/business_over.gif");},
	 function(){$(this).attr("src", "images/business.gif");}
	 );  

   	$("#contractor").hover(
	 function(){$(this).attr("src", "images/contractor_over.gif");},
	 function(){$(this).attr("src", "images/contractor.gif");}
	 ); 
	
   	$("#contact").hover(
	 function(){$(this).attr("src", "images/contact_over.gif");},
	 function(){$(this).attr("src", "images/contact.gif");}
	 ); 
});


