function ShowStuff(){
	var Name = prompt("To access this info, type the first name of Jeremy's brother:", "");

 	if ( (Name=='jason') || (Name=='Jason') )  { 
		this.location.href = "bio.html";
		}
	else {
		this.location.href = "index.html";
		}
	}

var menu0=new Array()
menu0[0]='<A CLASS=MenuLink HREF="https://scs.fidelity.com/customeronly/fullview.shtml">Fidelity</A>'
menu0[1]='<A CLASS=MenuLink HREF="http://wsj.com">Wall Street Journal</A>'
menu0[2]='<A CLASS=MenuLink HREF="http://espn.com">ESPN</A>'
menu0[3]='<HR>'
menu0[4]='<A CLASS=MenuLink HREF="http://www.amazon.com">Amazon</A>'
menu0[5]='<A CLASS=MenuLink HREF="http://www.cingular.com">AT&T Cingular</A>'
menu0[6]='<a CLASS=MenuLink href="http://mail.yahoo.com">Yahoo! E-mail</a>'
menu0[7]='<a CLASS=MenuLink href="http://www.vonage.com">Vonage Voice-mail</a>'
menu0[8]='<A CLASS=MenuLink HREF="http://webmail.registeredsite.com">Online E-mail</A>'
menu0[9]='<A CLASS=MenuLink HREF="https://www.fedex.com/myfedex/go/home">FedEx Tracking</A>'
menu0[10]='<a CLASS=MenuLink href="http://www.continental.com">Continental Airlines</a>'
menu0[11]='<HR>'
menu0[12]='<A CLASS=MenuLink HREF="http://www.orbitz.com">Orbitz</A>'
menu0[13]='<A CLASS=MenuLink HREF="http://www.brandsoftheworld.com">Brands of the World</A>'
menu0[14]='<A CLASS=MenuLink HREF="http://creative.gettyimages.com/source/account/signin.asp">Getty Images</A>'
menu0[15]='<A CLASS=MenuLink HREF="http://www.worldlingo.com/en/products_services/worldlingo_translator.html">Translator</A>'
menu0[16]='<A CLASS=MenuLink HREF="http://switchboard.intelius.com">Phone Book</A>'

var menuwidth='160px' //default menu width
var menubgcolor='#202020'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

//Code

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
	document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
	var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
	var parentEl=what.offsetParent;
	while (parentEl!=null){
		totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
		parentEl=parentEl.offsetParent;
		}
	return totaloffset;
	}


function showhide(obj, e, visible, hidden, menuwidth){
	if (ie4||ns6)
	dropmenuobj.style.left=dropmenuobj.style.top=-500
	if (menuwidth!=""){
		dropmenuobj.widthobj=dropmenuobj.style
		dropmenuobj.widthobj.width=menuwidth
		}
	if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
	obj.visibility=visible
	else if (e.type=="click")
	obj.visibility=hidden
	}

function iecompattest(){
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
	}

function clearbrowseredge(obj, whichedge){
	var edgeoffset=0
	if (whichedge=="rightedge"){
		var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
		dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
		if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
		edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
		}
	else{
		var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
		dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
		if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
		edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
		}
	return edgeoffset
	}

function populatemenu(what){
	if (ie4||ns6)
	dropmenuobj.innerHTML=what.join("")
	}


function dropdownmenu(obj, e, menucontents, menuwidth){
	if (window.event) event.cancelBubble=true
	else if (e.stopPropagation) e.stopPropagation()
		clearhidemenu()
	dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
	populatemenu(menucontents)

	if (ie4||ns6){
		showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
		dropmenuobj.x=getposOffset(obj, "left")
		dropmenuobj.y=getposOffset(obj, "top")
		dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
		dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
		}

	return clickreturnvalue()
	}

function clickreturnvalue(){
	if (ie4||ns6) return false
	else return true
	}

function contains_ns6(a, b) {
	while (b.parentNode)
	if ((b = b.parentNode) == a)
	return true;
	return false;
	}

function dynamichide(e){
	if (ie4&&!dropmenuobj.contains(e.toElement))
		delayhidemenu()
	else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
		delayhidemenu()
	}

function hidemenu(e){
	if (typeof dropmenuobj!="undefined"){
		if (ie4||ns6)
			dropmenuobj.style.visibility="hidden"
		}
	}

function delayhidemenu(){
	if (ie4||ns6)
	delayhide=setTimeout("hidemenu()",disappeardelay)
	}

function clearhidemenu(){
	if (typeof delayhide!="undefined")
	clearTimeout(delayhide)
	}

if (hidemenu_onclick=="yes")
	document.onclick=hidemenu
