function setupFadeLinks() {
arrFadeLinks[0] = 'http://twitter.com/ESBAle/statuses/19943024163';
arrFadeTitles[0] = 'RT @delfinasf: Delfina is hiring an exceptional food runner!  Please send resumes to delfina@delfinasf.com!';
arrFadeLinks[1] = 'http://twitter.com/ESBAle/statuses/19939990974';
arrFadeTitles[1] = 'RT @harpoon_brewery: one message for your weekend. Love Beer. Love Life.';
arrFadeLinks[2] = 'http://twitter.com/ESBAle/statuses/19926666136';
arrFadeTitles[2] = '#SalsFridayBrew rec for 7/30: @StoneBrewingCo Sublimely Self-Righteous Ale 8.7% ABV (cc @sal_castaneda) http://bit.ly/8ZRTv6';
arrFadeLinks[3] = 'http://twitter.com/ESBAle/statuses/19925614347';
arrFadeTitles[3] = 'RT @markdredge: Brewing\'s coming home - some of the finest beers money can\'t buy http://tinyurl.com/386mfrp @ESBAle, @topfermented, @dog ...';
arrFadeLinks[4] = 'http://twitter.com/ESBAle/statuses/19915088445';
arrFadeTitles[4] = 'Check out Shaun O\'Sullivan of @21stAmendment this morning @8:15AM on @KFOGMORNINGSHOW - Listen live on-line http://bit.ly/dShf”';
arrFadeLinks[5] = 'http://twitter.com/ESBAle/statuses/19795463901';
arrFadeTitles[5] = 'Most appropriately placed ad for Bud Light of all time...  http://yfrog.com/16nbpfmj';
arrFadeLinks[6] = 'http://twitter.com/ESBAle/statuses/19783523717';
arrFadeTitles[6] = 'Nice! Cheers to that!! RT @cfong42: .@SFGiants Trending in Los Angeles: Buster Posey at 3, #sfgiants at 10';
arrFadeLinks[7] = 'http://twitter.com/ESBAle/statuses/19631030190';
arrFadeTitles[7] = 'Hate to leave when it\'s so close but we have a tired wee one who is way past her bedtime';
arrFadeLinks[8] = 'http://twitter.com/ESBAle/statuses/19630376239';
arrFadeTitles[8] = 'Yup! “@HoppyDave: @ESBAle Great seats to see umps heading downstairs for review.”  http://yfrog.com/44tbdj';
arrFadeLinks[9] = 'http://twitter.com/ESBAle/statuses/19626532117';
arrFadeTitles[9] = '@troymccluresf ESB black/white hat and orange sweatshirt. Addison next to me in pink';
}
// set this to the number of seconds (decimals are allowed) to delay between links
var delaySeconds = 5;
// set this to the number of seconds (decimals are allowed) to delay after mousing off a link
var mouseLeaveDelaySeconds = 5;
// set this to the ID of the link
var linkId = 'fade_link';

// don't change anything below
var arrFadeLinks;
var arrFadeTitles;

jQuery(document).ready(function(){
	arrFadeLinks = new Array();
	arrFadeTitles = new Array();
	setupFadeLinks();
	
	var $links = jQuery('#' + linkId);
	var lastLink = arrFadeLinks.length - 1;
	var currentLink = 0; 

	scrollLinks = function() {
		if (currentLink > lastLink) {
			currentLink = 0;
		}
		
		$links.text(arrFadeTitles[currentLink]).attr('href', arrFadeLinks[currentLink]);
		
		currentLink ++;
	}
	
	scrollLinks();
	var scroll = setInterval(scrollLinks, delaySeconds * 1000);
	
	$links.bind('mouseenter',function(){
		clearInterval(scroll);
	})
	.bind('mouseleave',function(){
		scroll = setInterval(scrollLinks, mouseLeaveDelaySeconds * 1000);
	});
});