stripes = function(table)
{
	if($type(table) == "string")
	{
		table = $(table);
	}
	tr = table.getElements('tr');
	tr.each(function(el,i){
		if(i%2 == 0)
		{
			//el.addClass(class);
		}
	});
}