window.addEvent('domready', function() {
	var colors = [
		'#333',
		'#006600',
		'#006699',
		'#400080',
		'#b70202',
		'#c96500',
	];
				
	$$('div#nav ul li.main').each(function(item, index) {
		var children = item.getChildren('a');
		if (colors[index] && children.length) {
			children[0].addEvents({
				'mouseover': function() {
					children[0].setStyle('color',colors[index]);
				},
				'mouseout': function() {			
					children[0].setStyle('color','#999');
				}
			});
		} else {
			item.setStyle('color',colors[index]);
		}
	});
	
	$$('div#nav ul li.main ul.dropdown').each(function(item, index) {
		var children = item.getChildren('li a');
		var offset = index + 1;
		if (colors[offset] && children.length) {
			children.each(function(ite, ind) {
				ite.addEvents({
					'mouseover': function() {
						ite.setStyle('color',colors[offset]);
					},
					'mouseout': function() {			
						ite.setStyle('color','#999');
					}
				});
			});
		}
	});

	var slide = new Slider($('imagecontainer'),{
		size: {w:448,h:336},
		start: 1,
		direction: 'forward',
		autoStart: true,
		duration: 500,
		interval: 7000,
	});

});
