//-- preloadimages
//array of imahes
if (document.images) {
	indexdeep1on= new Image(350,25);
	indexdeep1on.src="images/index2b2b2.jpg";  
	indexdeep1off= new Image(350,25);
	indexdeep1off.src="images/index2b2b.jpg";
	
	indexdeep2on= new Image(350,25);
	indexdeep2on.src="images/index2b2d2.jpg";  
	indexdeep2off= new Image(350,25);
	indexdeep2off.src="images/index2b2d.jpg";
	
	indexdeep3on= new Image(350,25);
	indexdeep3on.src="images/index2b2f2.jpg";  
	indexdeep3off= new Image(350,25);
	indexdeep3off.src="images/index2b2f.jpg";
	
	indexdeep4on= new Image(350,25);
	indexdeep4on.src="images/index2b2h2.jpg";  
	indexdeep4off= new Image(350,25);
	indexdeep4off.src="images/index2b2h.jpg";
	
	indexdeep5on= new Image(350,25);
	indexdeep5on.src="images/index2b2j2.jpg";  
	indexdeep5off= new Image(350,25);
	indexdeep5off.src="images/index2b2j.jpg";
	
}


function imgHover(imgName) {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function imgOut(imgName) {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }


//----------- tooltip for photos ------------------------------------------------------------
  
function phototip(id){
	var tips = new Array()
	
	//shuld be in one line
	tips[1] = "<table width=\'100%\' height=\'100\' cellspacing=\'0\' cellpadding=\'0\'><tr><td valign=\'top\'><img src=\'images/quotesopen.gif\' /></td><td class=\'quote darkgray\'><br />Intent is reflected in action.  The Great Fountain Geyser at Sunset in Yellowstone National Park, Wyoming.<br /><br /></td><td valign=\'bottom\'><img src=\'images/quotesclose.gif\' /></td></tr></table>"
	tips[2] = "<table width=\'100%\' height=\'100\' cellspacing=\'0\' cellpadding=\'0\'><tr><td valign=\'top\'><img src=\'images/quotesopen.gif\' /></td><td class=\'quote darkgray\'><br />Inspiration can be drawn from the depth of stillness.  A glacial lake in Alaska courtesy of the U.S. Geologic Survey.<br /><br /></td><td valign=\'bottom\'><img src=\'images/quotesclose.gif\' /></td></tr></table>"
	tips[3] = "<table width=\'100%\' height=\'100\' cellspacing=\'0\' cellpadding=\'0\'><tr><td valign=\'top\'><img src=\'images/quotesopen.gif\' /></td><td class=\'quote darkgray\'><br />Clarity of insight can be derived from close examination, just as the drop of water magnifies the structure of a leaf.<br /><br /></td><td valign=\'bottom\'><img src=\'images/quotesclose.gif\' /></td></tr></table>"
	tips[4] = "<table width=\'100%\' height=\'100\' cellspacing=\'0\' cellpadding=\'0\'><tr><td valign=\'top\'><img src=\'images/quotesopen.gif\' /></td><td class=\'quote darkgray\'><br />Seeing things from afar can also create new insights and perspective. This is a view of the Vatnajokull Glacier from a U.S. Geologic Survey satellite far above the earth.<br /><br /></td><td valign=\'bottom\'><img src=\'images/quotesclose.gif\' /></td></tr></table>"
	tips[5] = "<table width=\'100%\' height=\'100\' cellspacing=\'0\' cellpadding=\'0\'><tr><td valign=\'top\'><img src=\'images/quotesopen.gif\' /></td><td class=\'quote darkgray\'><br />Change is continuous and forceful. A waterfall on the River Dobra in Northern Croatia. <br /><br /></td><td valign=\'bottom\'><img src=\'images/quotesclose.gif\' /></td></tr></table>"
	
	return(tips[id]);
}

//----------- filter out the content to be printed -------------------------------------------
function removeelements(){
	var remove_el=document.all.remove		//store all elements with id=remove to "remove_el"
	
	//if there is only one element with id=remove
	if (remove_el!=''&&remove_el.length==null)
		remove_el.style.display='none'
	else{
	//for each element with id=remove
		for (i=0;i<remove_el.length;i++)
			remove_el[i].style.display='none'
	}
}

function revertback(){
	setTimeout("window.location.reload()",50)
}

window.onbeforeprint=removeelements
window.onafterprint=revertback



//----------- icon arrow hover -----------------------------------------------------------------
function hoverarrow(imgname,flag){
	if(flag==0){
		document[imgname].src='images/icon_blank.gif';
	} else {
		document[imgname].src='images/icon_arrow.gif';
	}
}
//----------- no right click -------------------------------------------------------------------
var message="Welcome to 5 Deep Website.";

function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//----------------------------------------------------------------------------------------------