       var shophotoImg1 = new Array(["../images/happy/vieshow.jpg","www.vscinemas.com.tw","¼w¦w"],["../images/happy/miramarcinemas.gif","www.miramarcinemas.com.tw","¬üÄRµØ"]);	
	var playImg0 = new Array(2);	
	var nowIndex0=0;	
	for(var i=0;i<playImg0.length;i++){
		playImg0[i] = shophotoImg1[Math.ceil(Math.random()*shophotoImg1.length-1)];
		for(var j=0;j<i;j++){
			if(playImg0[j]==playImg0[i])	i--;
		}
	}

	function showPhotoImg(){

        
 
		document.getElementById("shophoto_div").innerHTML = "<A HREF='http://"+playImg0[nowIndex0][1]+"'><img src="+playImg0[nowIndex0][0]+" width='180' height='125' border='0'></a>";
		
		nowIndex0 = ((nowIndex0+1)>= playImg0.length?0:nowIndex0+1);
                  
                  
		
	}
	
	setInterval("showPhotoImg()",5000);
