$(function() {

// add params to form
$("#gsearch", "#header").append(
  '<input type="hidden" name="cx" value="015108252399026133196:noicnjhggo8" />'+
  '<input type="hidden" name="cof" value="FORID:10" />'+
  '<input type="hidden" name="ie" value="UTF-8" />');

// google code for search
var f = document.getElementById("gsearch");
if (f && f.q) {
var q = f.q;
if (true || navigator.platform == "Win32") {
  q.style.cssText = "border: 1px solid #7E9DB9; padding: 2px;";
}

var b = function() {
  if (q.value == "") {
    q.style.background = "#FFFFFF url(http:\x2F\x2Fcss.whiteyellow.com\x2Fimages\x2Fgoogle_custom_search_watermark.gif) left no-repeat";
  }
};
var f = function() {
  q.style.background = "#FFFFFF";
};
q.onfocus = f;
q.onblur = b;

if (!/[&?]q=[^&]/.test(location.search)) {
  b();
}
else {
  var s = ""+location.search;
      s = s.replace( /^.*q=([^&]+)/, "$1").replace(/[&].*$/, "");
  q.value = unescape(s);
}
}
});

