SecondImage = new Array();	
SecondImage['img01'] = 'img/menu_b01.gif';
SecondImage['img02'] = 'img/menu_b02.gif';
SecondImage['img03'] ='img/menu_b03.gif'; 
SecondImage['img04'] ='img/menu_b04.gif'; 
SecondImage['img05'] ='img/menu_b05.gif'; 
SecondImage['img06'] ='img/menu_b06.gif'; 
SecondImage['img07'] ='img/menu_b07.gif'; 
SecondImage['img08'] ='img/menu_b08.gif'; 
SecondImage['img09'] ='img/menu_b09.gif'; 
SecondImage['img10'] ='img/menu_b10.gif'; 

function over(kod)
{
	 OrigImage=document.images[kod].src; 
	 document.images[kod].src=SecondImage[kod];
}  
function out(kod)
{
	 document.images[kod].src=OrigImage;
}

function OpenPhoto(titulka, fileName, xSize, ySize)
{
	var str = "height=" + ySize + ",innerHeight=" + ySize;
       str += ",width=" + xSize + ",innerWidth=" + xSize;
       str += ",left=40,screenX=40";
       str += ",top=40,screenY=40,scrollbars=yes,resizable=yes";
	  
    w2 = window.open('', fileName, str);   
	w2.document.write("<HEAD><TITLE>" + fileName + "</TITLE>");
	w2.document.write("<link rel=StyleSheet type=text/css href=photo.css>"); 
	w2.document.write("</HEAD>");
	w2.document.write("<CENTER>");
	w2.document.write("<div class=title>" + titulka + "</div>");
	w2.document.write("<img src=photo/" + fileName + ".jpg border=0 onClick='window.close()'>");
	w2.document.write("<br><a href=# onclick=window.close()>Zatvoriť</a>");	
	w2.document.write("</CENTER>");
	w2.document.close();
}	


