/* 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(){

	$('reveal_content').setStyle('height','auto');
	var mySlide = new Fx.Slide('reveal_content',
    {
      duration: 350//,
      //transition: 'bounce:in:out'  //add this option when making the Fx.Slide instance
    }).hide();  //starts the panel in closed state  

	

    $('reveal_banner').addEvent('mouseover', function(e){
    //;
		//e = new Event(e);
		
	mySlide.cancel();
		mySlide.slideIn();
		
		//e.stop();
	});

    $('reveal_banner').addEvent('mouseout', function(e){
		//e = new Event(e);
		//alert('gg');
		mySlide.cancel();
		mySlide.slideOut();
		
		//e.stop();
	});

});




