$(document).ready(function(){

	svalue = "";
	snewvalue = "";
  first=true;

    $("#inpsearch").focus(function () {
      if (first)
      {
		    svalue = $(this).val();
		    $(this).val("");
		    first=false;
		  }  
    });
    $("#inpsearch").blur(function () {
		snewvalue = $(this).val();
		if (svalue != "" && snewvalue == "") {
			$(this).val(svalue);
		}
    });
	$("a[rel='external']").attr({
		target: "_blank"
	});
});


