// Scripts

jQuery(
function() {
	
	
	$('#search input[type="text"]').click(
		function() {
			this.value = '';
		}
	);
	

}
);


