function schowaj(){ this.className='';}
function pokaz(){  this.className = 'hover'; this.onmouseout = schowaj; }
function fixIE() {
if(window.ActiveXObject) var x = document.getElementById('top');
if (!x) return;
var y = x.getElementsByTagName('li');
for (var i=0;i<y.length;i++)
 y[i].onmouseover = pokaz;
}



function pops() {
var ap=document.getElementsByTagName('a');
for (var j=0;j<ap.length;j++) {
        var l=ap[j].href;
        if ((ap[j].href.indexOf('.jpg')>-1) || (ap[j].href.indexOf('.gif')>-1) ) {ap[j].href='javascript:void(window.open("'+ap[j].href+'","","width=540,height=430,scrollbars=yes"))'}
        else if ((ap[j].href.indexOf('.pdf')>-1) || (ap[j].className=='ext')) {ap[j].setAttribute('target','_blank');}
        }
}

window.onload = function() { fixIE(); pops(); }


