// SITE SEARCH
$(document).ready(function(){
	$('#gogo').click(function(){
		var word = $('#word').val();
		var hint = $('#hint').val();
		if(word == ''){return false;}
		searchWord('hint='+encodeURI(hint)+'&query='+encodeURI(word));
	});
	$('#searchbox').submit(function(){
		var word = $('#word').val();
		var hint = $('#hint').val();
		if(word == ''){return false;}
		searchWord('hint='+encodeURI(hint)+'&query='+encodeURI(word));
		return false;
	});
	$('#word').focus(function(){
		$('#word').css('background-image','none');
	});
	$('#word').blur(function(){
		if($('#word').val() == ''){
			$('#word').css('background-image','url(/image/search.gif)');
		}
	});
});

function searchWord(args){
	//alert(args);
	$.get(
		'/app/sitesearch/?',
		args,
		function(data, status){
			//alert(status);
			$('#searchResult').html(data);
			$('#searchResBox').fadeIn('slow');
		},"html"
	);
}

function hideSearchBox(){
	$('#searchResBox').fadeOut('slow');
}