var month = {
timeout : null,
showPopup : function(){
clearTimeout(this.timeout);
if($('month').style.display == 'none'){
this.timeout = setTimeout(function(){new Effect.BlindDown('month', {duration:.3, fps:40})},400);
}
},
hidePopup : function(){
if($('month').style.display == 'none'){
clearTimeout(this.timeout);
}else{
this.timeout = setTimeout(function(){new Effect.BlindUp('month', {duration:.3, fps:40})},300);
}
}
}

var allentry = {
timeout : null,
showPopup : function(){
clearTimeout(this.timeout);
if($('allentry').style.display == 'none'){
this.timeout = setTimeout(function(){new Effect.BlindDown('allentry', {duration:.3, fps:40})},400);
}
},
hidePopup : function(){
if($('allentry').style.display == 'none'){
clearTimeout(this.timeout);
}else{
this.timeout = setTimeout(function(){new Effect.BlindUp('allentry', {duration:.3, fps:40})},300);
}
}
}

