// INITIALISATION FUNCTIONS

	function init() {
		tablinator();
	}
	
// EVENTS

	window.onload = init;

// FUNCTIONS

	function tablinator() {
		var table = document.getElementsByTagName("table"); 
		for (i = 0; i < table.length; i++) {
			var cells = table[i].getElementsByTagName("td"); 
			for (j = 0; j < cells.length; j++) {
				cells[j].bgColor = '';
			}
		}
	}
