/* 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(){
	$('contact-info-panel-text').setStyle('height','auto');
	var mySlide = new Fx.Slide('contact-info-panel-text').hide();  //starts the panel in closed state
 
    //Show-Hide login panel when you click the link "Login" on top of the page
    $('slideoutcontact').addEvent('click', function(e){
		e = new Event(e);
		mySlide.toggle(); //show-hide login panel
		e.stop();
	});
	
	    //Show-Hide login panel when you click the link "Login" on top of the page
    $('slideoutcontactfoot').addEvent('click', function(e){
		e = new Event(e);
		mySlide.toggle(); //show-hide login panel
		e.stop();
		
	});
	
 });
