var i= 0;


var big = new Array();
 big[0] = new Image(); big[0].src = "garten_1.jpg";
 big[1] = new Image(); big[1].src = "garten_2.jpg";
 big[2] = new Image(); big[2].src = "garten_3.jpg";
 big[3] = new Image(); big[3].src = "garten_4.jpg";
 big[4] = new Image(); big[4].src = "garten_5.jpg";
 big[5] = new Image(); big[5].src = "garten_6.jpg";
 big[6] = new Image(); big[6].src = "garten_7.jpg";
 big[7] = new Image(); big[7].src = "garten_8.jpg";


var small = new Array();
 small[0] = new Image(); small[0].src = "t_garten_1.jpg";
 small[1] = new Image(); small[1].src = "t_garten_2.jpg";
 small[2] = new Image(); small[2].src = "t_garten_3.jpg";
 small[3] = new Image(); small[3].src = "t_garten_4.jpg";
 small[4] = new Image(); small[4].src = "t_garten_5.jpg";
 small[5] = new Image(); small[5].src = "t_garten_6.jpg";
 small[6] = new Image(); small[6].src = "t_garten_7.jpg";
 small[7] = new Image(); small[7].src = "t_garten_8.jpg";



function Big(i)
 {
	document.images["bild0"].src = small[0].src;
	document.images["bild0"].width = 105;
        document.images["bild0"].height = 140;

	document.images["bild1"].src = small[1].src;			
	document.images["bild1"].width = 105;
        document.images["bild1"].height = 140;

	document.images["bild2"].src = small[2].src;
	document.images["bild2"].width = 105;
        document.images["bild2"].height = 140;

	document.images["bild3"].src = small[3].src;			
	document.images["bild3"].width = 140;
        document.images["bild3"].height = 105;

	document.images["bild4"].src = small[4].src;
	document.images["bild4"].width = 140;
        document.images["bild4"].height = 105;

	document.images["bild5"].src = small[5].src;			
	document.images["bild5"].width = 140;
        document.images["bild5"].height = 105;

	document.images["bild6"].src = small[6].src;
	document.images["bild6"].width = 140;
        document.images["bild6"].height = 105;

	document.images["bild7"].src = small[7].src;			
	document.images["bild7"].width = 140;
        document.images["bild7"].height = 105;

 	if(i==0)	{	
	document.images["bild0"].src = big[0].src;		
	document.images["bild0"].width = 263;
        document.images["bild0"].height = 350;
			}
 	if(i==1)	{	
	document.images["bild1"].src = big[1].src;		
	document.images["bild1"].width = 263;
        document.images["bild1"].height = 350;
			}
 	if(i==2)	{	
	document.images["bild2"].src = big[2].src;		
	document.images["bild2"].width = 263;
        document.images["bild2"].height = 350;
			}
 	if(i==3)	{	
	document.images["bild3"].src = big[3].src;		
	document.images["bild3"].width = 350;
        document.images["bild3"].height = 263;
			}
 	if(i==4)	{	
	document.images["bild4"].src = big[4].src;		
	document.images["bild4"].width = 350;
        document.images["bild4"].height = 263;
			}
 	if(i==5)	{	
	document.images["bild5"].src = big[5].src;		
	document.images["bild5"].width = 350;
        document.images["bild5"].height = 263;
			}
 	if(i==6)	{	
	document.images["bild6"].src = big[6].src;		
	document.images["bild6"].width = 350;
        document.images["bild6"].height = 263;
			}
 	if(i==7)	{	
	document.images["bild7"].src = big[7].src;		
	document.images["bild7"].width = 350;
        document.images["bild7"].height = 263;
			}

 	
}


