// This is the URL of the clip you want to load
		var clipUrl =new Array( 
		'http://vimeo.com/7631594',
		'http://vimeo.com/5554104',
		'http://vimeo.com/4714357'
		);
		var width = '735';
		
		
		
		// This is the oEmbed endpoint for Vimeo (we're using JSON)
		// (Vimeo also supports oEmbed discovery. See the PHP example.)
		var endpoint = 'http://www.vimeo.com/api/oembed.json';
		
		// Tell Vimeo what function to call
		var callback = 'embedVideo';
		
		// Put together the URL
		alea=Math.floor(Math.random() * clipUrl.length);
		var url = endpoint + '?url=' + encodeURIComponent(clipUrl[alea]) + '&width=' + width + '&callback=' + callback;
		
		// This function puts the video on the page
		function embedVideo(video) {
			document.getElementById('embed').innerHTML = unescape(video.html);
		}
		
		// This function loads the data from Vimeo
		function init() {
			var js = document.createElement('script');
			js.setAttribute('type', 'text/javascript');
			js.setAttribute('src', url);
			document.getElementsByTagName('head').item(0).appendChild(js);
		}
		
		// Call our init function when the page loads
		window.onload = init;