if (Browser.Engine.trident4) {
$$('div.shaCont div.shadCont').tween('bottom',-1); }
else
{$$('div.shaCont div.shadCont').tween('bottom',0); }
function desAll() { $$('div#hnCont ul li').removeClass('sel');}
function selArticlesDisappear() {
$$('div.shaCont div.shadCont').tween('bottom',-100);
$$('div.shaCont').setProperty('class','shaContInv');

}
$$('div#hnCont ul li').each(function(button) {
    button.addEvent('auto', function() {
    desAll();
    this.setProperty('class','sel');
    i='div#hsa'+this.id.substring(4,5);
    selArticlesDisappear();
    $$(i).setProperty('class','shaCont');
    if (Browser.Engine.trident4) {
    $$(i+' div.shadCont').tween('bottom',-1); }
    else {
    $$(i+' div.shadCont').tween('bottom',0); } 
    });
    button.addEvent('click', function() {
    this.fireEvent('auto');
    $clear(per);
    });
});
function timr() {
var el=$$('div#hnCont ul li.sel')[0];
i=el.id.substring(4,5);
var a = parseInt(i)+1;
if (a>4) {a=0;}
var sel='hnlb'+a
$(sel).fireEvent('auto');
}
var per=timr.periodical(6000);