var Site = {
  Common: {
    init: function(e) {
      $('body').removeClass('nojs').addClass('js');
    }
  }
};

$(document).ready(function() {
  Site.Common.init();

  /* Accessible input values
 ---------------- */
   $("form#searchsite input.text").each(function(){
    var val = $(this).prev().html();
    if(this.value == '') this.value = val;
    $(this)
     .focus(function(){
      if(this.value == val) this.value = '';
     }).blur(function(){
      if(this.value == '') this.value = val;
    })
   });

});
