if (document.all&&!document.getElementById)
 document.getElementById = function (w) { return document.all[w] };
        function galery() {
        
        document.getElementById('obrazek').style.display='block';
        if(a=document.getElementsByTagName('A')){
        for(i=0;i<a.length;i++)a[i].href.indexOf('.JPG')>0?a[i].onclick=obraz:void(0);
        i=0;
        while(a[i].href.indexOf('.JPG')<1)i++;
        a[i].onclick();
         }
         }
         function obraz() {

                document.getElementById('obrazek').innerHTML='<img src='+this.href+' title="" alt=""/>';
                return false;
         }

