window.addEvent('domready', function() {
		
	var mySlide = new Fx.Slide('drawer', {transition: Fx.Transitions.expoInOut, duration:1300}).hide();
	var goDown = new Fx.Scroll(window, {transition: Fx.Transitions.expoInOut, duration:1300});
	var fx = new Fx.Styles('toggler', {duration:800});
					
	var panel = new Fx.FlyingScroller($('mind-body-spirit'), {
		transition: Fx.Transitions.expoOut,
		duration: 1300,
		paddingLeft: 0,
		paddingTop:0
	});
	
	//var myScroller = new Scroller('choose-episode', {area: 20, velocity: 1});
	
	//$('scroll-episode').addEvent('mouseover', myScroller.start.bind(myScroller));
	//$('scroll-episode').addEvent('mouseout', myScroller.stop.bind(myScroller));

	/*$$('#choose-episode a').addEvent('click', function(g) {
						g = new Event(g);
						myChooser.toTop();
						g.stop();
						$('choose-episode').setStyle('display', 'none');
	});*/
	
	$$('#choose-episode a').addEvent('click', function() {
						panel.clearTimer().toElement($('m-b-s'));
						$$('#choose-episode ul').setStyle('overflow', '');
						return false;
	});
	
	$('toggler').addEvents({
				  'mousedown': function(g) {
						g = new Event(g);
						mySlide.show();
						g.stop();
						$('drawer').setStyle('margin', '0px auto');
						fx.start({
							color: '#968585'
						});						
				},'click': function(h) {
						h = new Event(h);
						mySlide.show();
						h.stop();
						$('drawer').setStyle('margin', '0px auto');
						fx.start({
							color: '#968585'
						});
				},'mouseup': function(down) {
						down = new Event(down).stop();
						goDown.toBottom();
						$('toggler').setStyle('display', 'none');
						$('close').setStyle('display', 'inline');
						fx.start({
							color: '#ffffff'
						});
				}
	});
	
	$('close').addEvent('click', function(f) {
						f = new Event(f);
						mySlide.slideOut();
						f.stop();
						$('toggler').setStyle('display', 'inline');
						$('close').setStyle('display', 'none');
						fx.start({
							color: '#a1a1a1'
						});
	});
	
	/*$$('#mind-body-spirit img').addEvents({
				  'mousedown': function(l) {
						l = new Event(l);
						$('choose-episode').setStyle('display', 'inline');
						l.stop();
				},'mouseup': function(f) {
						f = new Event(f);
						myChooser.toBottom();
						f.stop();
				}
	});*/
	
	var version = deconcept.SWFObjectUtil.getPlayerVersion();
	
	if (version['major'] < 8) {
		document.getElementById('flashcontent').setHTML("<a href=\"http://www.adobe.com/go/getflashplayer/\" title=\"Download\" target=\"_blank\"><img src=\"http://www.thecitadelle.org/images/2007/getflash.png\" alt=\"Download\" /></a>");
			
		$$('#mind-body-spirit img').addEvent('click', function() {
						$$('#choose-episode ul').setStyle('display', 'none');
						panel.clearTimer().toElement($('flashcontent'));
						return false;
		});
		
	} else {
		
		$$('#mind-body-spirit img').addEvent('click', function() {
						panel.clearTimer().toElement($('choose-episode'));
						$$('#choose-episode ul').setStyle('overflow', 'auto');
						return false;
		});
	}

});