window.addEvent('domready', function(){

	new Swiff('/flash/header.swf', {
		width: 896,
		height: 110,
		loop: true
	}).replaces($('logo'));

	// footer flash
	var body = document.getElement('body');
	var flashFile = '/flash/footer.swf';
	var flashParameters = {
		width: 896
	};

	if (body.get('id') == 'home') {
		flashFile = '/flash/footer-home.swf';
		flashParameters.height = 340;
	} else {
		flashParameters.height = 266;
	}

	$('content').adopt(new Swiff(flashFile, flashParameters));

	// video player
	if ($('videoPlayer')) {
		var portfolioVideo = new Swiff('/flash/video-player.swf', {
			id: 'portfolioVideo',
			container: $('videoPlayer'),
			width: 444,
			height: 276,
			vars: {
				videoFile: $('videos').getElement('a').get('href')
			}
		});

		$$('#videos a').each(function(el){
			el.addEvent('click', function(e){
				e.stop();
				$('portfolioVideo').loadVideo(this.href);
			});
		});
	}
});
