﻿$(document).ready(function(){
	$("#q").mousedown(function(){
		if($(this).val()=="Please input keywords."){
			$(this).val("");
		}
		$(this).css({"color":"#000","background":"#ffa"});
	});
	
	$("#q").blur(function(){
		if($(this).val()==""){
			$(this).val("Please input keywords.");
			$(this).css({"color":"#999"});
		}
		$(this).css({"background":"#fff"});
	});
});
