 $(document).ready(function() {

    $("a.check").attr("target","_blank");
    $("a.help").each(function(){$(this).attr("href",$(this).attr('href')+"/popup/keepThis=true/TB_iframe=true/height=350/width=500")});

   $("#search").focus(function() {
if( this.value == this.defaultValue ) {
        this.value = "";
    }
}).blur(function() {
    if( !this.value.length ) {
        this.value = this.defaultValue;
    }
   });
 });
