
$(document).ready(function(){
	alter_links();
    	alternate_table_row_colours('#e3e6ec');
}

);



function alternate_table_row_colours(colour)
{
	var tables = document.getElementsByTagName('table');
	
	for( var i=0; i<tables.length; i++ )
	{
		if( tables[i].className == 'details-table' )
		{
				var rows = tables[i].getElementsByTagName('tr');
				
				for( var j=0; j<rows.length; j++ )
				{
					if( j%2 )
					{
						rows[j].style.backgroundColor = colour;
					}	
				}
		}
	}
}





