    function an(id,kopfid,teaserid)
    {
        screentest(id);
        $(id).style.display = 'block';
        $(teaserid).style.borderRight = '2px solid #ccc';
        $(teaserid).style.borderBottom = '2px solid #ccc';
        $(kopfid).style.color = '#666';
        $(kopfid).stopObserving( "mouseout" );        
    }

    function overan(id,kopfid,teaserid)
    {
        screentest(id);
        $(id).style.display = 'block';
        $(teaserid).style.borderRight = '2px solid #ccc';
        $(teaserid).style.borderBottom = '2px solid #ccc';
        $(kopfid).style.color = '#666';
        $(kopfid).observe( "mouseout", function(event) { aus(id, kopfid, teaserid); } );
    }
    
    function aus(id,kopfid,teaserid)
    {
        
        $(id).style.display = 'none';
        $(kopfid).style.color = '#bcbcbc';
        $(teaserid).style.borderRight = '2px solid #fff';
        $(teaserid).style.borderBottom = '2px solid #fff';
        $(kopfid).stopObserving( "mouseout" ); 
    }

    function screentest(id)
    {
       if(screen.availHeight <= 1000)
       {
         $(id).style.marginTop = "-215px";
         $(id).style.marginLeft = "-6px";
         $(id).style.paddingTop = "3px";
         $(id).style.paddingLeft = "17px";
         $(id).style.zIndex = "98";
         $(id).style.backgroundColor = "#fff";
         $(id).style.position = "absolute";
         $(id).style.top = "555px";
         $(id).style.width = "135px";
         $(id).style.borderRight = "2px solid #ccc";
         $(id).style.minHeight = "180px";
        }
    }
    

