activeMenu = null;
timerId = 0;

function nav(where){
	window.open(where,'_self');
}

function on1(name) 
{
  if (!document.getElementById) {
      return;
  }
  clearTimeout(timerId);
  if (activeMenu == name) {
	  return;
  }      
  if (activeMenu != null) {
      menuOff();
  }
  activeMenu = name;
  			
  document.getElementById(activeMenu).style.visibility = "visible";
}

function menuOff()
{
  if (!document.getElementById) {
      return;
  }
  if (activeMenu == null) {
      return;
  }
  document.getElementById(activeMenu).style.visibility = "hidden";
  		
  activeMenu = null;
}

function off1(){
	timerId=setTimeout("menuOff()",400);
}

function popup(image){
	myWindow = window.open('', '_blank', 'toolbar=no, width=600, height=600, titlebar=no, menubar=no, status=no, scrollbars=no');
	myWindow.document.write('<html><head><title>Ivo Atanasov</title></head><body style="margin:0">');
	myWindow.document.write('<img onclick="window.close();" src=big_images/'+image+' NAME="imageTest" onLoad="self.resizeTo((document.imageTest.width+10 ),(document.imageTest.height+80))"><br>');
	myWindow.document.write('</body></html>');
}