- function prepareSlideshow(){
- // alert("prepareSlideshow()");
- if(!document.getElementsByTagName){return false;}
- if(!document.getElementById){return false;}
- if(!document.getElementById("intro")){return false;}
- var intro = document.getElementById("intro");
- var slideshow = document.createElement("div");
- slideshow.setAttribute("id","slideshow");
- /* var frame =document.createElement("img");
- // frame.setAttribute("src","images/frame.jpg");//??????
- frame.setAttribute("alt","");
- frame.setAttribute("id","frame");
- slideshow.appendChild(frame);*/
- var preview = document.createElement("img");
- preview.setAttribute("src","images/slideshow.jpg");
- preview.setAttribute("alt","a glimps of what awaits you");
- preview.setAttribute("id","preview");
- preview.setAttribute("width","2702");
- preview.style.position="absolute";
- //preview.style.left="300px";
- slideshow.appendChild(preview);
- insertAfter(slideshow,intro);
- var links=intro.getElementsByTagName("a");
- for(var i= 0 ;i<links.length;i++){
- // alert("for");
- links[i].onmouseover=function(){
- var dextination = this.getAttribute("href");
- if(dextination.indexOf("index.html")!=-1){
- moveElement("preview",0,0,5)
- }
- if(dextination.indexOf("about.html")!=-1){
- moveElement("preview",-320,0,5)
- }
- if(dextination.indexOf("photos.html")!=-1){
- moveElement("preview",-600,0,5)
- }
- if(dextination.indexOf("live.html")!=-1){
- moveElement("preview",-900,0,5)
- }
- if(dextination.indexOf("contact.html")!=-1){
- moveElement("preview",-1200,0,5)
- }
- }
- }
- }
- addLoadEvent(prepareSlideshow);