//if(document.referrer === '' && $(window).width() < 500) {document.location = 'http://m.london2012.com/mobile/';}

$(document).ready(function() {
  $(".smartInput").focus(function() {
    if( this.value == this.defaultValue ) {
      this.value = "";
    }
  }).blur(function() {
    if( !this.value.length ) {
      this.value = this.defaultValue;
    }
  });      
});
