$(document).ready(function () {

	var colors = new Array();
	colors[0] = "#ff9900";
	colors[1] = "#cd3301";
	colors[2] = "#3399cc";
	colors[3] = "#b833cc";
	colors[4] = "#079900";
	colors[5] = "#ffff00";
	colors[6] = "#ec008c";
	colors[7] = "#6dcff6";
	colors[8] = "#620460";

	// loop through main nav and apply bg colours from array above
	$("#menuBlock li").each(function(index) {
		var $this = $(this);
		$this.css("background-color",colors[index]);
	});
	
	// apply nifty corners
	//Nifty("div#menuBlock li");

// close document ready
});
