$(document).ready(function(){ 
DisplaySearch();
});

function DisplaySearch() { 

$("#silver-nav").hide(10, function() {
$("#sb").html('');$("#sb").show();
$("#sb").load("/controls/ajaxsearch.html"); 
window.setTimeout("SearchFocusKw()", 300);
});

}

function SearchFocusKw() {
var loc = window.location.toString();
var ss = loc.substring(loc.lastIndexOf("/search/")+8).replace("/","");
$("#txtQuery").val(decodeURIComponent(decodeURIc(ss)));
$("#txtQuery").focus();
}
