// iMenu by ImpactGroup (www.impactgroup.pl)
var iCache=[];
for(var i=1;i<=12;i++) {
  iCache[i]=new Image();
  iCache[i].src='img/menu_'+i+'_1.gif';
  iCache[i+12]=new Image();
  iCache[i+12].src='img/menu_'+i-12+'_0.gif';
} 

function iClick(n) {
if (n == 1){
  document.location.href='subpage2.html';
  } else if (n == 2){
  document.location.href='subpage.html';
  } else if (n == 3){
  document.location.href='subpage.html';
  } else if (n == 4){
  document.location.href='subpage.html';
  } else if (n == 5){
  document.location.href='subpage.html';
  } else if (n == 6){
  document.location.href='index.html';
  } else if (n == 7){
  document.location.href='subpage.html';
  } else if (n == 8){
  document.location.href='subpage.html';
  } else if (n == 9){
  document.location.href='subpage.html';
  } else if (n == 10){
  document.location.href='subpage.html';
  } else if (n == 11){
  document.location.href='subpage.html';
  } else if (n == 12){
  document.location.href='subpage.html';
  } 
}
function iOver(n) {
  document.images['b'+n].src='img/menu_'+n+'_1.gif';
}
function iOut(n) {
  document.images['b'+n].src='img/menu_'+n+'_0.gif';
}
