// The menu mouseover blurbs: (Initialized as blurb[0] from index.html page on loading.)	var blurb = new Array();	blurb[0] = "<img src='graphics/trolleycar.gif' style='text-decoration:none' border=0 title='This is Yiddish: &quot;If my grandmother had wheels, she&rsquo;d be a trolleycar!&quot;'>";
	blurb[1] = "Read my column in<br>The Brandeis Hoot";	blurb[2] = "My portfolio of<br>websites";
	blurb[3] = "Meet Qimmeq<br>and Dextera...<br>I love them!";	blurb[4] = "The genetics of<br>colorblindness on a<br>Pacific island";	blurb[5] = "Like poetry? I do!<br>Come in and enjoy.";	blurb[6] = "Each of us has a story<br>about that day...";	function YadaYada(which) {		var blurbSlice = document.getElementById("tName");		blurbSlice.innerHTML = blurb[which];	} 	
			

// Combined function for both titles and subtitles:    var titles = new Array();	titles[0] = "Welcome!"; 
	titles[1] = "Give a <i>Hoot!</i>";	titles[2] = "<img src='graphics/studiolito_title.gif' border='0' title='studio.lito -- My portfolio of websites'>";  
	titles[3] = "My pets";	titles[4] = "Research paper";	titles[5] = "Bust a rhyme";	titles[6] = "Lest we forget...";    var subtitles = new Array();	subtitles[0] = "";   
	subtitles[1] = "<i>Horseradish</i> was my weekly column in <i>The Brandeis Hoot</i> from 2005 - 2007.<br> <i>&quot;Careful with the Horseradish; it's hot...&quot;</i>";	subtitles[2] = "A portfolio of websites I've designed for student clubs and professional<br>businesses. Click on them and have a look!";
	subtitles[3] = "Qimmeq ('KEE-meck') means dog in Greenlandic. I've always wanted to<br>go there. His doghouse has the Greenlandic flag and coat of arms.<br>Dextera is a domestic shorthair cat, and she's sooo fat! :)";	subtitles[4] = "The genetics of colorblindness on the Pacific islands of Pingelap, Mokil, and<br>Pohnpei in Micronesia. The maps and photos are interesting; so is the<br>historic background. This was my first graduate research paper.";	subtitles[5] = "Just a few of my favorites. When the words move you ...you've got poetry.";	subtitles[6] = "This is my story: Just a snapshot of a time, an event, a nation, and one<br>man's life. See my pictures of how it used to be. God bless the USA.";	
		function changeTitle(what) {		var titleSlice = document.getElementById("idName");
		var subtitleSlice = document.getElementById("subName");		titleSlice.innerHTML = titles[what];			subtitleSlice.innerHTML = subtitles[what];	}	// Micronesia pop-ups:	var widths = new Array();	widths[0] = 550;	widths[1] = 550;	widths[2] = 366;	widths[3] = 632;	widths[4] = 615;	widths[5] = 540;	widths[6] = 496;			var heights = new Array();	heights[0] = 345;	heights[1] = 345;	heights[2] = 356;	heights[3] = 322;	heights[4] = 422;	heights[5] = 569;	heights[6] = 500;	 	function fsmPopUp(arrayNum) {		var fsmWindow;		var param;		param = " toolbar=0, location=0, directories=0, scrollbars=0, menubar=0, status=0, resizable=1, top=50, left=50, screenX=50, screenY=50, width=" + widths[arrayNum] + ", height=" + heights[arrayNum] + ", ";					fsmWindow = window.open("fsm.html?" + arrayNum,"",param);		if (window.focus) {			fsmWindow.focus();		}	}
		
		// WTC pop-up script (used only from within this website): 	var myOtherWindow;    var param = " toolbar=0, location=0, directories=0, scrollbars=0, menubar=0, status=0, resizable=1, ";		function photoPopUp() {		myOtherWindow = window.open("wtc_photo.html","",param);		if (window.focus) {			myOtherWindow.focus();		}
	}


// WTC intermediate window pop-up script (alt. method, used only from links outside this website): 	var myTempWindow;    var param2 = " top=50, left=50, screenX=50, screenY=50, width=100, height=100, toolbar=0, location=0, directories=0, scrollbars=0, menubar=0, status=0, resizable=1, ";		function tempPopUp() {		myTempWindow = window.open("wtc_temp_popup.html","",param2);		/* 
		if (window.focus) {			myTempWindow.focus();		} 
		*/	}