// JavaScript Document
 $( document ).ready
 (
   function()
  {
   $( ".New_Listing" ).each( function( intIndex ){ $( this ).html( $( this ).html().replace(  /_/gi, " " ) ); } );
  }
 )
 
  $( document ).ready
 (
   function()
  {
   $( ".Under_Offer" ).each( function( intIndex ){ $( this ).html( $( this ).html().replace(  /_/gi, " " ) ); } );
  }
 )
