$(document).ready(function() {
   var searchLabel = $('#searchlabel').remove().text();
   $('#s').addClass('placeholder').val(searchLabel).focus(function() { 
       if (this.value == searchLabel) { 
         $(this).removeClass('placeholder').val(''); 
       }; 
     }).blur(function() { 
       if (this.value == '') { 
         $(this).addClass('placeholder').val(searchLabel); 
       }; 
     });
   $('div.reserve button').text('Reserve');
   $('a#searchsubmit').click(function() {
      $('form#searchform').submit();
      return false;
   });
});

Cufon.replace('#homenews h3, #home-featured h3, #new_arrivals h3, h2.entry-title,#companyinfo h2');
