 $(document).ready(function() {
	$('#frmInput').blur(function() {
		if($(this).val()=='') $(this).val('SEARCH');
	});						
	$('#frmInput').focus(function() {
		if($(this).val()=='SEARCH') $(this).val('');
	});		
	$("p:contains('records out of')").addClass("pagerecords");
 });

