function makeTopMenu()
{
var topmenu=""
topmenu+='<center>';
topmenu+='<hr width="850" color="#000098">';
topmenu+='<a href="chantek.html" title="Chantek">Chantek</a> <img src="images/pps1.gif"> ';
topmenu+='<a href="chase.html" title="Chase">Chase</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="danny.html" title="Danny">Danny</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="dd.html" title="DD">DD</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="dream.html" title="Dream">Dream</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="dylan.html" title="Dylan">Dylan</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="ellie.html" title="Ellie">Ellie</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="elyce.html" title="Elyce">Elyce</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="hagen.html" title="Hagen">Hagen</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="heygo.html" title="Heygo">Heygo</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="lonny.html" title="Lonny">Lonny</a> <br>';
topmenu+='<a href="merak.html" title="Merak">Merak</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="oscar.html" title="Oscar">Oscar</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="rain.html" title="Rain">Rain</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="raja.html" title="Raja">Raja</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="rambo.html" title="Rambo">Rambo</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="scotty.html" title="Scotty">Scotty</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="shanna.html" title="Shanna">Shanna</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="stacy.html" title="Stacy">Stacy</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="tiger.html" title="Tiger">Tiger</a> <img src="images/pps1.gif">  ';
topmenu+='<a href="ziggy.html" title="Ziggy">Ziggy</a>';
topmenu+='<hr width="850" color="#000098">';
topmenu+='</center>';
document.open('text/html');
document.write(topmenu);
}

function makeBottomMenu()
{
var bottommenu=""
bottommenu+='<center>';
bottommenu+='<hr width="850" color="#000098">';
bottommenu+='<a href="index.html" title="Home">Home</a> <img src="images/pps1.gif"> ';
bottommenu+='<a href="memorial.html" title="Memorial">Memorial</a> <img src="images/pps1.gif"> ';
/*
bottommenu+='<a href="information.html" title="Information">Information</a> <img src="images/pps1.gif"> ';
bottommenu+='<a href="links.html" title="Links">Links</a> <img src="images/pps1.gif"> ';
*/
bottommenu+='<a href="contact.html" title="Contact Us">Contact Us</a> ';
bottommenu+='<hr width="850" color="#000098">';
bottommenu+='</center>';
document.open('text/html');
document.write(bottommenu);
}

// Gallery script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.
function LoadGallery(pictureName,imageFile,titleCaption,captionText)
{
  var picture = document.getElementById(pictureName);
  if (picture.filters)
  {
    picture.style.filter="blendTrans(duration=1)";
    picture.filters.blendTrans.Apply();
  }
  picture.src = imageFile;
  if (picture.filters)
  {
    picture.filters.blendTrans.Play();
  }
  document.getElementById(titleCaption).innerHTML=captionText;
}

function moveToPrevious()
{
	new Effect.Move('imageBoxInside', { x: 116, y: 0, transition: Effect.Transitions.sinoidal });
}  
function moveToNext()
{
	new Effect.Move('imageBoxInside', { x: -116, y: 0, transition: Effect.Transitions.sinoidal });
}

