window.addEvent('domready', function() {
								 
									
	
	var movie_links = $$('#video_menu a');
	
		movie_links.each(function(element) {
	
			element.addEvent('click', function(e) {
				new Event(e).stop();						
				
				$('video_container').set('html', "<object id='video' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='410' height='380'><param  name='movie' value='"+element.rel+"' /><param name='wmode' value='transparent'><!--[if !IE]>--><object  type='application/x-shockwave-flash' data='"+element.rel+"' width='410' height='380'><!--<![endif]--><div><h1>Alternative content</h1><p><a href='http://www.adobe.com/go/getflashplayer'><img src='http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' /></a></p></div><!--[if !IE]>--></object><!--<![endif]--></object>");
				
				
			});
		});
	

});