
    var counter = 1;
    var wishimg=new Array();

    wishimg[0]  = "http://thedali.org/wishtree/imgz/leaf01.png";       
    wishimg[1]  = "http://thedali.org/wishtree/imgz/leaf02.png";       
    wishimg[2]  = "http://thedali.org/wishtree/imgz/leaf03.png";       
    wishimg[3]  = "http://thedali.org/wishtree/imgz/leaf04.png";       
    wishimg[4]  = "http://thedali.org/wishtree/imgz/leaf05.png";       
    wishimg[5]  = "http://thedali.org/wishtree/imgz/leaf06.png";       
    wishimg[6]  = "http://thedali.org/wishtree/imgz/leaf07.png";       
    wishimg[7]  = "http://thedali.org/wishtree/imgz/leaf08.png";       
    wishimg[8]  = "http://thedali.org/wishtree/imgz/leaf09.png";       
    wishimg[9]  = "http://thedali.org/wishtree/imgz/leaf10.png";        
    wishimg[10] = "http://thedali.org/wishtree/imgz/leaf11.png";      

    window.onload = function(){ var timer = setInterval(imgflip,150); }
	
    function imgflip(){
      document.getElementById("imageAnimated").src = wishimg[counter];
      if (counter == 10) { counter=0; }
      else               { counter++; }	
    }
	
    var state = 'none';
    function showhide(layer_ref) {
      if (state == 'block') { state = 'none';  } 
      else                  { state = 'block'; } 
      if (document.all) { eval( "document.all." + layer_ref + ".style.display = state"); } 
      if (document.layers) { document.layers[layer_ref].display = state; } 
      if (document.getElementById &&!document.all) { 
        hza = document.getElementById(layer_ref); 
        hza.style.display = state; 
      } 
    } 
	
    function openLink(){ window.location = 'http://www.thedali.org/wishtree'; }
	
    document.write('<div id="tree" style="text-align:right; position:absolute; top:0; right:0; display:table; float:right; z-index:5;">');
    document.write('  <img src="http://thedali.org/wishtree/imgz/leaf01.png" id="imageAnimated" onMouseOver="showhide(\'wish\');"/>');
    document.write('</div>');
      
    document.write('<div id="wish" style="text-align:right; position:absolute; top:0; right:0; display:table; float:right; display:none; z-index:10;">');
    document.write('  <img src="http://thedali.org/wishtree/imgz/wish-note.png" width="320" height="160" onClick="openLink();" style="cursor:pointer !important;"/  onMouseOut="showhide(\'wish\');">');
    document.write('</div>');


