$(document).ready(function(){  
	$(".search-form .key").focus(function() {
		$(this).css('color','black');
		if ($(this).val() == $(this).attr('empty')) $(this).val('');
	});
	$(".search-form .key").blur(function() {
		if ($(this).val() == '') {
			$(this).css('color','#999');
			$(this).val($(this).attr('empty'));
		}
	});
	$(".search-form .key").blur();
});
