// preload all images in html
 var imgs,i;
 imgs=document.getElementsByTagName('img');
 for(i in imgs)
 {
  preload_image(imgs[i])
 }
// preload images in javascript
preload_image("'+urlbase+'menu/logos/bear_paw_rt.gif")
preload_image("'+urlbase+'menu/team/d_profile.jpg")
preload_image("'+urlbase+'menu/team/yellowbear_head_ocean.jpg")
preload_image("'+urlbase+'menu/team/t_profile.jpg.jpg")

document.write('<h1 style="text-align:center;font-size:28px;margin-top:4px;margin-bottom:0px;"><a href="'+urlbase+'index.html" style="text-decoration:none;color:#454545;">Yellow Bear Journeys</a></h1>')
document.write('<h2 style="text-align:center;font-size:20px;font-weight:normal;font-style:italic;margin-top:0px;margin-bottom:0px;">Helping People Discover and Experience their Ocean</h2>')
document.write('<h3 style="text-align:center;font-size:16px;font-weight:normal;font-style:italic;margin-top:0px;margin-bottom:0px;">of Resources to Last a Life Time</h3>')

//preload the image...
function preload_image(myimg) {
if (document.images)
{
    pic1= new Image(800,600); 
    pic1.src=myimg; 
}
}
