var MenuOpendByClick = null;
$(function(){
		   $(".sub,.subl").css("display","none");
		   
		   $(".menu a.ext").click(function(){
										   
										   if(MenuOpendByClick !== this){
											     $(".sub"+$(MenuOpendByClick).attr('id')).css("display","none");
												 $(MenuOpendByClick).attr("opened","false");
												 MenuOpendByClick = null;
											}
											 if($(this).attr("opened") == "true"){
												 $(".sub"+$(this).attr('id')).css("display","none");
												 $(this).attr("opened","false")
												 MenuOpendByClick = null;
											 }
											 else{
												eleft = $(this).offset().left + 200;
												$(".sub"+$(this).attr('id')).css("display","block");
												$(".sub"+$(this).attr('id')).parent().css("left",eleft);
												
												$(this).attr("opened","true")
												MenuOpendByClick = this;
											}
											
										})


if($(".center").height() < $(window).height()){
	$(".center").css("height",$(window).height()+"px");
}
setTimeout('if($(".center").height() < $(window).height()){	$(".center").css("height",$(window).height()+"px");}',2000);
		   
})
