
window.addEvent('domready',function(){var headerSlide=new Fx.Slide('frame_header');var headerStatus=Cookie.get('headerStatus');if(headerStatus==false)headerStatus='down';var imgPath='fileadmin/templates/images/';if(headerStatus=='up'){headerSlide.hide();$('toggle_btn').src=imgPath+'icon_toggle_down.gif';}
$('toggle_header').addEvent('click',function(e){switch(headerSlide.wrapper.offsetHeight){case 0:$('toggle_btn').src=imgPath+'icon_toggle_up.gif';Cookie.set('headerStatus','down',{duration:365});break;case 230:$('toggle_btn').src=imgPath+'icon_toggle_down.gif';Cookie.set('headerStatus','up',{duration:365});break;}
e=new Event(e);headerSlide.toggle();e.stop();});});