$(document).ready(function(){
	$('#s').focus(function(){
		$(this).val('');
	});

	$("tr:nth-child(odd)").addClass("odd");
	$("li:nth-child(odd)").addClass("odd");
});
