
	document.pageStart = function()
	{
		$('#accordion').accordion({ header: 'h2', event: "mouseover" });
		$('.featurecontainer').each(function(i) {
			$('.featurepreview', this).each(function(i) {
				this.colorIndex = i;
				$(this).hover(featureHover, featureNoHover);
				
				$('h3', this).css('color', colors[i]);
				$('p', this).css('color', '#cccccc');
				$(this).css('background', 'none');
			});
		});
	}
	
	featureHover = function()
	{
		$('h3', this).css('color', textColors[this.colorIndex]);
		$('p', this).css('color', textColors[this.colorIndex]);
		$(this).css('background-color', colors[this.colorIndex]);
	}
	
	featureNoHover = function()
	{
		$('h3', this).css('color', colors[this.colorIndex]);
		$('p', this).css('color', '#cccccc');
		$(this).css('background', 'none');
	}