// This file contains the things that change from year to year
// Link to the MS TeamNavy WebSite
// The amount Team Navy has raised in the fight against MS
// Questions? Contact Zach Crum : crum.zach @ gmail.com
// February 6, 2012

//  This is the link to the National MS Team Navy web page
// 2011var mstnlink = "http://main.nationalmssociety.org/site/TR?pg=team&fr_id=13100&team_id=178681"
// 2012 link
var mstnlink = "http://bikewas.nationalmssociety.org/site/TR/Bike/WASBikeEvents?fr_id=17999&pg=entry"
//do not change this
var msteamnavywebsite = "<a href=\"" + mstnlink + "\" target=\"_blank\" class=\"underline\"><img src=\"img/BilltheGoatSmall.png\" alt=\"Team Navy Logo\" class=\"images\" /></a>";

//  Change to indicate amount TN has raised
var amountraised = "$230,000";

// Change to indicate how many years TN has participated in MS rides
var yearsridden = "six";

//format and return last sentence of 2nd paragraph
function amount() {
    var am = " " + amountraised + " over the past " + yearsridden;
    return am;
}

