jQuery.noConflict();
(function($){

$(document).ready(function(){
  var str = "";
  if( document.referrer.match("\.google\.") ){
    if( str = document.referrer.match(".+[\?&]q=([^&]+).*") ){
      str = decodeURI(str[1]);
    }
  }else if( document.referrer.match("\.goo\.") ){
    if( str = document.referrer.match(".+[\?&]MT=([^&]+).*") ){
      str = decodeURI(str[1]);
    }
  }else if( document.referrer.match("\.yahoo\.") ){
    if( str = document.referrer.match(".+[\?&]p=([^&]+).*") ){
      str = decodeURI(str[1]);
    }
  }else if( document.referrer.match("\.msn\.") ){
    if( str = document.referrer.match(".+[\?&]q=([^&]+).*") ){
      str = decodeURI(str[1]);
    }
  }else if( document.referrer.match("\.bing\.") ){
    if( str = document.referrer.match(".+[\?&]q=([^&]+).*") ){
      str = decodeURI(str[1]);
    }
  }
  str = str.replace("\u3000", "\x20");
  if( str ){
    $("#tinyLPOWord").html(str);
    $("#tinyLPOResults").load(lpo_search_script + encodeURI(str) + '&MaxResults=10');
    $("#tinyLPOBox").show();
  }
});

})(jQuery);

