$(document).ready(function() {
	$('#edit-search-theme-form-1').bind('focus', 
		function(event) {
			$(this).val('');
			$(this).css('color', '#000000');
		}
	);
	
	$('#edit-search-theme-form-1').bind('blur', 
		function(event) {
			$(this).val('Search...');
			$(this).css('color', '#999999');
		}
	);
});