var speed=5000;
var the_slide=1
var max_slide=3;
var slide_list=[1,2,3];
slide_list[1]=["昆明商业摄影","http://www.sinvc.com/sheyingzuopin/photo/200807/23-27.shtml"];
slide_list[2]=["创意摄影失忆之灵","http://www.sinvc.com/sheyingzuopin/photo/200808/30-67.shtml"];
slide_list[3]=["妆面作品","http://www.sinvc.com/sheyingzuopin/photo/200811/24-121.shtml"];
function Marquee(){
if(the_slide<=max_slide){
document.getElementById("slideshow").firstChild.src="/sinvc/img/slide0"+the_slide+".jpg";
document.getElementById("slideshow").firstChild.alt=slide_list[the_slide][0];
document.getElementById("slideshow").href=slide_list[the_slide][1];
//alert(slide_list [the_slide ]);
the_slide++;
}else{
the_slide=1;
}
}
var MyMar=setInterval(Marquee,speed);