<!--
//---------- MooTools Functions for Homepage Video

	window.addEvent('domready', function(){
			//-vertical

			//alert('cheese');
			//var mySlide = new Fx.Slide('flashContainer');
			var fx = new Fx.Style('slideContainer', 'height', {duration:1000});

			//var scroll = new Fx.Scroll('window', {
				//wait: false,
				//duration: 2500,
				//transition: Fx.Transitions.Quad.easeInOut
			//});
			//
		
			$('slideout').addEvent('click', function(e){
				fx.start(500);
				window.location.hash="#video"; 

			});
			
			$('slidein').addEvent('click', function(e){
				
				fx.start(130);
				//window.location.hash="#welcome"; 
			
			});

			new SmoothScroll();
			
	});
	
	function slideIn(){
		
		var x = document.getElementById('slidein');
		x.fireEvent('click');
	
	}
	
	function slideOut(){
		
		var x = document.getElementById('slideout');
		x.fireEvent('click');
	
	}
	
	
//--------- End MooTools Functions for Homepage Video

-->