// JavaScript Document
$(document).ready(function(){

	$('.clio').hide();
	$('.london').hide();
	$('.cannes').hide();
	$('.magazine').hide();
	$('.army').hide();
	$('.commarts').hide();
	
	var speed = 500
	
	$('.clio').fadeIn(speed, function() {
		$('.london').fadeIn(speed, function () { 
			$('.cannes').fadeIn(speed, function () {
				$('.magazine').fadeIn(speed, function () {
					$('.army').fadeIn(speed, function () {
						$('.commarts').fadeIn(speed);
					});
				});	
			});
		});	
	});
	
	
	
	var href = $('.video').children('a').attr('href');
	
	function object(anch) {
		$(anch).replaceWith('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="640" height="376"><param name="src" value="'+href+'"><param name="autoplay" value="true"><embed src="'+href+'" width="640" height="376" autoplay="true" pluginspage="http://www.apple.com/quicktime/download/"></embed></object> ');	
	}
	
	$('.video').children('a').click(function (ev) {
		ev.preventDefault();
		object(this);
		return false;
	});
	
}); //document ready	
	
	

