/* FX.Slide */
/* toggle window for the login section */
/* Works with mootools-release-1.2 */
/* more info at http://demos.mootools.net/Fx.Slide */

window.addEvent('domready', function(){

	var open=0;
if ($('bannerContent')) {
	//$('bannerContent').setStyle('height','40px');
	var myEffect = new Fx.Morph('bannerContent', {
		duration: 500,
		transition: Fx.Transitions.Sine.easeOut
	});
	if (open==0) {
			myEffect.start({
				'height': [0, 198] // Morphs the 'height' style from 10px to 100px.
			});
			open=1;
			$('toggleButton').setStyle('background-image', 'url(/work/themes/_common/img/arrow_down.png)');
		}	
	$('toggleButton').addEvent('click', function(e){
		e = new Event(e);
		if (open==0) {
			myEffect.start({
				'height': [0, 198] 
			});
			this.setStyle('background-image', 'url(/work/themes/_common/img/arrow_down.png)');
			open=1;
		}	
		else {
			myEffect.start({
				'height': [198, 0] 
			});
			this.setStyle('background-image', 'url(/work/themes/_common/img/arrow_up.png)');
			open=0;
		}
		e.stop();
		
	});
	}

});




