var LanguagePanelExpander = new Class({
	
	dblclickcatch : false,
	
	toggle : function() {
		
		if($('languagepanel').getSize().y == 0) {
			//alert('expand');
			this.expand();
		} else if($('languagepanel').getSize().y == 32) {
			//alert('collapse');
			this.collapse();
		}
		
		
		
	},
	
	expand : function() {
		new Fx.Tween($('languagepanel'), {
			onComplete : function() {
				
				$('languagepanel').highlight('#050E19');
				$('expander-icon').set('src', '/images/expander-up.png');
				
			}
		}).start('height',32);
		
		//$('headerpanel-top').tween('padding-top',76);
		
	},
	
	collapse : function() {
		new Fx.Tween($('languagepanel'), {
			onComplete : function() {
				
				$('expander-icon').set('src', '/images/expander-down.png');
				
			}
		}).start('height',0);
		
		//$('headerpanel-top').tween('padding-top',44);
	}
							  
});
