	function rollover(ref, state) {

		if(state == true)
			$(ref).addClass("over");
		else
			$(ref).removeClass("over");

		return false;
	}

	$(document).ready(function(){

	  $(".tablelist tr:nth-child(odd)").addClass("odd");
	  $(".tablelist tr").mouseover( function() { rollover(this, true); } );
	  $(".tablelist tr").mouseout( function() { rollover(this, false); } );

	  $("input, select, textarea").focus( function() { rollover(this, true); } );
	  $("input, select, textarea").blur( function() { rollover(this, false); } );

	});