// On load

$(document).ready(function() {

	//fixture zebra
    $('#fixtures ul li:odd, #results tr:odd').addClass('zebra');
    

	//search field
	$('#s').focus(function(){
	    if (this.value == 'Search') this.value = '';
	  }).blur(function(){
	    if (this.value == '') this.value = 'Search';
	  });


	
});



