$(function() {
	var searchText = "BIZ-MAG Retrieval";
	$('#hSearch input:text').attr('value', searchText);
	
	$('#hSearch input:text').focus(function() {
		$(this).attr('value', "");
		$(this).css('color','#595757');
	});
	$('#hSearch input:text').blur(function() {
		if(!$(this).attr('value')) {
			$(this).attr('value', searchText);
			$(this).css('color','#B9B8B8');
		}
	});
});