window.addEvent('domready',function() {	
	
	/* faded images */
	$$('.fades').each(function(el, i) {
		var fade = new Fx.Style(el, 'opacity', {
			wait: false,
			duration: 500,
			transition: Fx.Transitions.Quart.easeInOut
		});
		el.addEvent('mouseenter', function() { fade.start(0.5, 1); });
		el.addEvent('mouseleave', function() { fade.start(1, 0.5); });
	});
});

function linkchanger() {
	
	var thelink 	= $('RotatingLink');
	var theimage 	= $('RotatingImage');
	
	var thesources 	= ['/images/what-clients-think.gif', '/images/press-releases.gif', '/images/see-camp.gif'];
	var thealts 	= ['what our clients think', 'see our latest press releases', 'see images of whichaway camp'];
	var thehrefs 	= ['/testimonials/', '/press-releases/', '/gallery/camp/'];
	
	var thedelay = 5000;
	var arrayindex = 0;
	
	setTimeout(linkchanger, thedelay);
	
}