$(document).ready(function(){
	$('div.frow input,div.frow textarea,#kw').focus(function(){
		if($(this).attr('title') == $(this).val()){
			$(this).val('');
		}else{
			$(this).val($(this).val());
		}
	});
	$('div.frow input,div.frow textarea,#kw').blur(function(){
		if($(this).val() == ''){
			$(this).val($(this).attr('title'));
		}else{
			$(this).val($(this).val());
		}
	});
});
