<!--
var fact=new Array();
var n=-1;

// Edit list of pictures below:

n=n+1; fact[n]="I speak conversational Spanish.";
n=n+1; fact[n]="I love the Dallas Cowboys.";
n=n+1; fact[n]="I really dislike Standard Time and wish we'd decide one summer to never change our clocks again.";
n=n+1; fact[n]="I love to go on long hikes and walks.";
n=n+1; fact[n]="One of my photos was used as a cover for a fiction <a href='http://www.amazon.com/His-Strange-Ways-Hardy-Robin/dp/B0027LNTH6/ref=sr_1_2?ie=UTF8&s=books&qid=1240953451&sr=1-2'>novel</a>.";
n=n+1; fact[n]="I've been <a href='http://www.quintcareers.com/job-search_lessons.html'>published</a> by a major career website.";
n=n+1; fact[n]="I've had my own web page since 1997, made my high school's first website, made a couple websites for my university, and helped implement the website at the church I attend.";
n=n+1; fact[n]="I was the president of the Environmental Society in college.";
n=n+1; fact[n]="I love to walk - once I walked 17 miles throughout the city in a day.";
n=n+1; fact[n]="I made $900 after one semester of college by buying other students' books and reselling them online.";
n=n+1; fact[n]="I support microfinance (<a href=\"http://www.villagebanking.org\">Village Banking</a>) as a way to bring people out of poverty.";
n=n+1; fact[n]="The Republican primary of 2000 and John McCain got me really interested in politics for a while, though I'm not nearly as interested anymore.";
n=n+1; fact[n]="The college course that changed me the most was the class I took on human rights.";
n=n+1; fact[n]="I love warm tea, especially rooibos, green, chomomile, ceylon, and breakfast tea.";
n=n+1; fact[n]="I majored in mechanical engineering but transitioned effectively to IT right out of college, then went to a job that blends both backgrounds.";
n=n+1; fact[n]="I hate to waste things.";
n=n+1; fact[n]="I'm interested in smart development and enjoy dense, pedestrian friendly urban areas.";
//n=n+1; fact[n]="One time my friends in high school kept pressuring me to get an after-school job, so I convinced them that I got one at Sonic and kept up the ruse for several weeks.";
//n=n+1; fact[n]=",";

// No need to mess with anything below here.

var i;
var j;

if ( typeof viewall != "undefined" ) {
var o=n;
}
else {
var o=0;
}

for (i=0;i<=o;i++) {
if ( typeof viewall != "undefined" ) {
j = i;
}
else {
j = Math.floor(Math.random() * (n + i))
if ( j > n ) {
    j = j - 2*i;
    }
}
document.write("<p><span id=\"fact_label\">random fact:</span> ");
document.write(fact[j]);
document.write("</p>");
}

// -->