m1 = new Image();m2 = new Image();
m3 = new Image();m4 = new Image();	
m5 = new Image();m6 = new Image();
m7 = new Image();m8 = new Image();	
m9 = new Image();m10 = new Image();
m11 = new Image();m12 = new Image();	
m13 = new Image();m14 = new Image();
m15 = new Image();m16 = new Image();	
m17 = new Image();m18 = new Image();

m1.src = 'pics/menu/index.jpg'; m2.src = 'pics/menu/indexh.jpg';
m3.src = 'pics/menu/clanky.jpg'; m4.src = 'pics/menu/clankyh.jpg';	
m5.src = 'pics/menu/stats_index.jpg'; m6.src = 'pics/menu/stats_indexh.jpg';
m7.src = 'pics/menu/profily.jpg'; m8.src = 'pics/menu/profilyh.jpg';	
m9.src = 'pics/menu/rozhovory.jpg'; m10.src = 'pics/menu/rozhovoryh.jpg';
m11.src = 'pics/menu/testy.jpg'; m12.src = 'pics/menu/testyh.jpg';	
m13.src = 'pics/menu/diskuse.jpg'; m14.src = 'pics/menu/diskuseh.jpg';	
m15.src = 'pics/menu/dotazy.jpg'; m16.src = 'pics/menu/dotazyh.jpg';
m17.src = 'pics/menu/odkazy.jpg'; m18.src = 'pics/menu/odkazyh.jpg';	

function swap (stary,novy) {
	document.images[stary].src = eval(novy + ".src");
}

function display () {							//window open se zdrojakem k banneru
	x=window.open("","","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=500,height=150");
	x.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1250"><title>Source code - rozhodci.org banner</title><link type="text/css" rel="stylesheet" href="style.css"></head><body style="background: #ffffff;">');
	x.document.write('<br /><div align="center"><b>Pro vložení našeho banneru jednoduše umístěte do vašich stránek tento kód:</b><br /><br />');
	x.document.write('&lt;a href="http://www.rozhodci.org" target="_blank">&lt;img src="http://www.rozhodci.org/bannery/ourbanner.gif" style="width: 88px; height:31px" alt="Rozhodčí.org" title="Rozhodčí.org - Web o hokejových rozhodčích" />&lt;/a>');
	x.document.write('<br /><br /><img src="bannery/ourbanner.gif" alt="Rozhodčí.org" /></div></body></html>');
return false;
}

function AddFavorite(linkObj,addUrl,addTitle)	//favourites on index
    {
      if (document.all && !window.opera)
      {
        window.external.AddFavorite(addUrl,addTitle);
        return false;
      }
      else if (window.opera && window.print)
      {
        linkObj.title = addTitle;
        return true;
      }
      else if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function'))
      {
        if (window.confirm('Přidat oblíbenou stránku jako nový panel?'))
        {
          window.sidebar.addPanel(addTitle,addUrl,'');
          return false;
        }
      }
      window.alert('Po potvrzení stiskněte CTRL-D,\nstránka bude přidána k vašim oblíbeným odkazům.');
      return false;
}

function openPicture(imageName,imageWidth,imageHeight) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=10,top=10");
	newWindow.document.open();
	newWindow.document.write('<html><title>Foto</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<img src="'+imageName+'" width="'+imageWidth+'" height="'+imageHeight+'" alt="Foto">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}