class_lang = function() {
	this.fLg = 0;
	var obj=this;
	jQuery('#lang').click(function(){
		if (obj.fLg==0) {
			obj.fLg=2;
			jQuery('#lang').animate({
			height:'60px'
			},
			1000
			,
			function() {
				obj.fLg=1;
				}
			);
			}
			else if (obj.fLg==1) {
				obj.fLg=2;
				jQuery('#lang').animate({
				height:'20px'
				},
				1000
				,
				function() {
					obj.fLg=0;
					}
				);
				}
		
		});
	}
