window.addEvent('domready', function(){
	new SmoothScroll();

	var fadeTimer = 5000;

	var homeClientLogos = $('homeClientLogos');

	if (homeClientLogos) {
		var homeClientLogosHeight = homeClientLogos.getStyle('height').toInt() * -1;
		var homeClientLogosContainer = homeClientLogos.getElement('div');
		var totalClients = homeClientLogos.getElements('a').length - 1;
		var direction = 1;
		var currentClient = 0;

		var stepThroughClients = function(){
			if ((direction == 1 && currentClient == totalClients) || (direction == -1 && currentClient == 0)) {
				direction = direction * -1;
			}

			currentClient += direction;
			homeClientLogosContainer.tween('top', homeClientLogosHeight * currentClient);
		}

		stepThroughClients.periodical(fadeTimer);
	}


	new Swiff('/flash/'+$('impact').get('class')+'.swf', {
	    id: 'impact',
	    width: 900,
	    height: 250,
	    params: {
	        wmode: 'opaque',
	        bgcolor: '#142358'
	    }
	}).replaces($('impact'));
});