$(document).ready(function(){
// stripey table
		$("table.stripey tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
		$("table.stripey tr:even").addClass("alt");
});




