﻿BeeldLijst=new Array()
/*Acties-Coupon*/
        BeeldLijst[BeeldLijst.length]="img/CouponSchoonmaakSieraad.jpg"
        BeeldLijst[BeeldLijst.length]="img/CouponNeusOor.jpg"
                
        pic=new Array()
        for(i=0;i<BeeldLijst.length;i++){
	        pic[i]=new Image()
	        pic[i].src=BeeldLijst[i]
        }
    
        function init(z){
        if(!z){z=0}
	        containerBreedte=parseInt(document.getElementById("container").style.width)
	        containerHoogte=parseInt(document.getElementById("container").style.height)
	        obj=document.getElementById("afbeelding")
	        obj.src=pic[z].src
	        beeldBreedte=pic[z].width
	        beeldHoogte=pic[z].height
	        obj.style.left=0
	        obj.style.top=0
	        pos_x=0
	        pos_y=0
	        nu_links=0
	        nu_boven=0
	        obj.style.width=beeldBreedte
	        obj.style.height=beeldHoogte
        }