// JavaScript Document

$(document).ready(function (){
	$("table.striped tr.title").each(function(){
		$(this).nextAll("tr:odd").addClass("odd");
		});
});
