window.addEvent('domready', function(){
	// make a new photo changer
	var pc = new PhotoChanger('photochanger', {
		url: '/json/banners.php'
	});
	pc.load();
	
	/* Animate Links */
	var upColor = $(document).getElement('ul.links li').getStyle('background-color');
	$(document).getElements('ul.links a').each(function(el){
		el.set('tween', {duration: 500});
		el.addEvents({
			'mouseenter': function(e){
				this.tween('background-color', upColor, '#ec5e12');
				if(this.getElement('.image')){
					this.getElement('.image').tween('opacity', .3, 1);
				}
			},
			'mouseleave': function(e){
				this.tween('background-color', upColor);
				if(this.getElement('.image')){
					this.getElement('.image').tween('opacity', .3);
				}
			}
		});
	});
});