//DHTML Gallery
//Written by Bogdan Blaszczak/BlaTek

function thumbs(i,j,t,t2){
 t=document.getElementById('content-box').getElementsByTagName('div')
 for(Tgl=[],i=0;i<t.length;i++)
  if(t[i].id=='gallery'){
   t2=t[i].getElementsByTagName('img')
   for(j=0;j<t2.length;j++){
    Tgl[Tgl.length]=t2[j]
	t2[j].onmouseover=function(){this.style.borderColor='#234'}
	t2[j].onmouseout=function(){this.style.borderColor='#666'}
   }
  }
}
function loadGallery(i){
 mImg=document.getElementById('main-gallery-img')
 if(document.all)mImg.style.filter='blendTrans(duration=0.7)'
 for(i=0;i<Tgl.length;i++){
  Tmi=Tgl[i].parentNode
  Tmi.I=new Image();Tmi.I.src=Tmi.href
 }Tmi=new Image();Tmi.src='img/point.gif'
}
function loadImg(t,f){
 if(!document.getElementById)return!0
 if(!window.mImg||!t.I)return!1
   if(mImg.src==t.href||t.I.height!=mImg.height)mImg.src='img/point.gif'
   mImg.style.border='1px solid #b7bebb'
 eval('try{f=mImg.filters}catch(Er){}')
 if(f)eval('try{f[0].Apply()}catch(Er){}')
 mImg.src=t.href
 mImg.style.border='1px solid #666'
 if(f)eval('try{f[0].Play()}catch(Er){}')
 return!1
}
