$(document).ready(function(){						   
	$("input[name='qs']").focus(function(){
		if($(this).attr('value') == 'SEARCH') {
			$(this).attr('value', '');
		}
	})
	$("input[name='qs']").blur(function(){
		if($(this).attr('value') == '') {
			$(this).attr('value', 'SEARCH');
		}
	})
});
