$(document).ready( function() {
   $("#ContentQuickButtons img").hover( function(){
	       var img_original,img_hover;
		   $(this).attr("src",($(this).attr("src")).replace(".jpg","_hover.jpg"));
	   },function(){
	       $(this).attr("src",($(this).attr("src")).replace("_hover.jpg",".jpg"));
	   }
   );
   var ContentIndex_height, ContentCustomers_height, ContentClimateSmart_height;
});
