// JavaScript Document

jQuery(function($) {

	var $q_message = $("#q_default").val();
	
	$("#q").focus(function(){
		if ($(this).attr("value")==$q_message){
			$(this).attr("value", "");
			$(this).removeClass("empty");
		}
	});
	$("#q").blur(function(){
		var val=$(this).attr("value").replace(/(^\s+)|(\s+$)/g, "");
		if (val.length==0){
			$(this).attr("value", $q_message);
			$(this).addClass("empty");
		}
	});
	window.onload=function(){
		var val=$("#q").attr("value").replace(/(^\s+)|(\s+$)/g, "");	
		if (val.length==0){
			$("#q").attr("value", $q_message);
			$("#q").blur();
			$(this).addClass("empty");
		}else if($("#q").attr("value")!=$q_message){
			$(this).removeClass("empty");
		}
	};			



});