function FindHotel()
{
   var val = $('#find-text').val();
   if(val.length < 1) return false;
   $('.highlight').parent('strong').css('background', '');
   $('strong')
   .removeHighlight()
   .highlight(val);
   $('.highlight').parent('strong').css('background', 'lime');
   $(document).scrollTop($('.highlight').position().top - 200);
   return true;
}

