// JavaScript Document

$(document).ready(function(){  
var oddEven = true;
//This bit calls the colouring function, change tablename here
$('.insideDivClass').each(function()
{
	if(oddEven)
	{
		$(this).addClass("odd");
		$(this).children().addClass("oddChild");
	}
	else
	{
		$(this).addClass("even");
		$(this).children().addClass("evenChild");
	}
        
      oddEven = !oddEven;
});
});

