function setProfile(i, Link)
{
var num = Math.floor(Math.random() * 4);
if (i == -1) {
    i = num;
}

var Bio1 = "<div id='bioImg'>";
Bio1 = Bio1 + "<a href='#' title=''><img src='/images/homeBody/betsyBio.jpg' alt='Betsy' /></a><p class='noTop'><span id='bioName'>Betsy Emery</span><span id='bioTitle'>CEO Tellus LLC</span></p>";
Bio1 = Bio1 + "</div>";
Bio1 = Bio1 + "<p class='noTop'>Betsy Emery is CEO and Founder of Tellus where she has overseen partnerships, web strategy consulting and continued service offering development since 2003. With more than 15 years eCommerce experience Betsy provides an in-depth understanding of industry best-practices as well as the operational and strategic drivers required to create a successful online channel.</p>";
Bio1 = Bio1 + "<img src='images/homeBody/divider.gif' alt='' />";
Bio1 = Bio1 + "<a href='#' onclick='javascript:setProfile(1);' title=''><img src='/images/homeBody/nextTeamMember.gif' alt='Next Team Member' class='readMore' /></a> <a href='/About-Us/Profiles.aspx' title='Employee Profiles'>&nbsp;&nbsp;<img src='/images/homeBody/readBio.gif' alt='Read Entire Bio' /></a>";            

var Bio2 = "<div id='bioImg'>";
Bio2 = Bio2 + "<a href='#' title=''><img src='/images/homeBody/hilaryBio.jpg' alt='Hilary' /></a><p class='noTop'><span id='bioName'>Hilary Giesler</span><span id='bioTitle'>Web Marketing Director</span></p>";
Bio2 = Bio2 + "</div>";
Bio2 = Bio2 + "<p class='noTop'>Hilary Giesler is a Senior Web Strategist at Tellus where she provides recommendations on site enhancements, email campaign development, search engine optimization, search engine marketing and the use of social media in order to deliver clients web traffic at an efficient ROI. Hilary develops customer acquisition and retention programs that enhance customer relationships and drive sales.</p>";
Bio2 = Bio2 + "<img src='images/homeBody/divider.gif' alt='' />";
Bio2 = Bio2 + "<a href='#' onclick='javascript:setProfile(2);' title=''><img src='/images/homeBody/nextTeamMember.gif' alt='Next Team Member' class='readMore' /></a> <a href='/About-Us/Profiles.aspx' title='Employee Profiles'>&nbsp;&nbsp;<img src='/images/homeBody/readBio.gif' alt='Read Entire Bio' /></a>";            

var Bio3 = "<div id='bioImg'>";
Bio3 = Bio3 + "<a href='#' title=''><img src='/images/homeBody/kimBio.jpg' alt='Kim' /></a><p class='noTop'><span id='bioName'>Kim Messing</span><span id='bioTitle'>Creative Director</span></p>";
Bio3 = Bio3 + "</div>";
Bio3 = Bio3 + "<p class='noTop'>Kim Messing is Creative Director at Tellus where she is responsible for the award-winning interface design that has distinguished Tellus-client websites from competitors since the company's inception. With 13 years experience and 31 industry awards to her credit, Kim helped earn Tellus recognition from the Web Marketing Association as being among the top 5 award-winning web design firms in 2005.</p>";
Bio3 = Bio3 + "<img src='images/homeBody/divider.gif' alt='' />";
Bio3 = Bio3 + "<a href='#' onclick='javascript:setProfile(3);' title=''><img src='/images/homeBody/nextTeamMember.gif' alt='Next Team Member' class='readMore' /></a> <a href='/About-Us/Profiles.aspx' title='Employee Profiles'>&nbsp;&nbsp;<img src='/images/homeBody/readBio.gif' alt='Read Entire Bio' /></a>";            

var Bio4 = "<div id='bioImg'>";
Bio4 = Bio4 + "<a href='#' title=''><img src='/images/homeBody/jeffBio.jpg' alt='Jeff' /></a><p class='noTop'><span id='bioName'>Jeff Crowder</span><span id='bioTitle'>Technical Director</span></p>";
Bio4 = Bio4 + "</div>";
Bio4 = Bio4 + "<p class='noTop'>Jeff Crowder is  Director of Technical Architecture at Tellus where he brings 12 years of professional architecture, design and development experience to the foundation and direction of all software projects. Prior to joining  Tellus Jeff managed Architecture and Technical Leadership for the nation's leading provider of diagnostic laboratory testing, information, and services.</p>";
Bio4 = Bio4 + "<img src='images/homeBody/divider.gif' alt='' />";
Bio4 = Bio4 + "<a href='#' onclick='javascript:setProfile(0);' title=''><img src='/images/homeBody/nextTeamMember.gif' alt='Next Team Member' class='readMore' /></a> <a href='/About-Us/Profiles.aspx' title='Employee Profiles'>&nbsp;&nbsp;<img src='/images/homeBody/readBio.gif' alt='Read Entire Bio' /></a>";            

if (i == 0) {
document.getElementById("bioBox").innerHTML = Bio1;
}

if (i == 1) {
document.getElementById("bioBox").innerHTML = Bio2;
}

if (i == 2) {
document.getElementById("bioBox").innerHTML = Bio3;
}

if (i == 3) {
document.getElementById("bioBox").innerHTML = Bio4;
}

}
