$(function() {
	/**
	 * Flash banner animation
	 */
	$('#flash-banner').cycle({
		timeout: 4000,
		fx: 'fade'
	});
	$('#flash-banner-small').cycle({
		timeout: 2000,
		fx: 'fade',
		easeOut: 'easeInExpo'
	});
	
	/**
	 * Video embedding
	 */
	var videoRoot = '/old/';
	var videoCount = 0;
	$('.video').each(function() {
		// Get the file and image URLs from the .video element
		var video = $(this);
		var file = video.attr('data-file');
		var image = video.attr('data-image');
		
		var divId = 'video-' + ++videoCount;
		var div = $('<div />').attr('id', divId);
		video.append(div);
		
		var flashvars = {
			file: videoRoot + file,
			image: videoRoot + image,
			usefullscreen: false
		};
		swfobject.embedSWF('flash/mediaplayer.swf', divId, 240, 200, '7.0.0', null, flashvars);
	});
});
