//catch all jquery components for killer 1 
	$(document).ready(function() { 
//clear search text field automatically
// clear the search field on focus... it's a function yo.  
$('.clearme').one("focus", function() {
$(this).val("");
				}); 
}); 

