var x;
//$("#livesearchbar").append('<style>#livesearchbar #search_box {background-color:#FFFFFF;background-image:url(http://acmicinteractive.com/AIS/images/searchbuttonbg.jpg);background-position:left center;background-repeat:no-repeat;border:2px solid #2A3D64;color:#3D4B58;font-family:Arial,Helvetica,sans-serif;font-size:21px;font-weight:normal;margin:0;padding:5px 3px 5px 25px;width:92px;}#livesearchbar #srchButton{vertical-align:bottom;}</style>');
$("#livesearchbar").append('<style>#livesearchbar #search_box{font-size:75%;font-weight:bold;color:#999; }</style>');
$("#livesearchbar").append('<input id="search_box" class="bord" type="text" size="4" name="q" value="powered by google"><input type="button"  id="srchButton" value="Search"/><!--<input type="image"  id="srchButton" src="http://acmicinteractive.com/AIS/images/searchbutton.jpg" value="search"/>-->');
$("#livesearchbar #search_box").focus(function(){
	if($(this).val()== 'powered by google')$(this).val(''); else $(this).select();
});
$("#livesearchbar #search_box").blur(function(){
	if($(this).val()=="" || $(this).val()== 'powered by google')$(this).val('powered by google');
});
$("#livesearchbar #srchButton").click(function(){
	if($("#livesearchbar #search_box").val()!=''){
		x=open('http://livefreesearch.com/index.php?se=hvl&q='+$("#livesearchbar #search_box").val());
	}
});
