function setupFadeLinks() {
arrFadeLinks[0] = 'http://twitter.com/ESBAle/statuses/10251688692';
arrFadeTitles[0] = 'There\'s Something About Proud Mary #musicmoviemashup';
arrFadeLinks[1] = 'http://twitter.com/ESBAle/statuses/10251495863';
arrFadeTitles[1] = 'The Muppets Take Manhattan Transfer #musicmoviemashup';
arrFadeLinks[2] = 'http://twitter.com/ESBAle/statuses/10251457684';
arrFadeTitles[2] = 'Ferris Bueller\'s Day Off The Wall #musicmoviemashup';
arrFadeLinks[3] = 'http://twitter.com/ESBAle/statuses/10251417568';
arrFadeTitles[3] = 'Video Killed the Radio Star Trek III: The Wrath of Khan #musicmoviemashup';
arrFadeLinks[4] = 'http://twitter.com/ESBAle/statuses/10251338862';
arrFadeTitles[4] = 'Everything But The Girl Interrupted #musicmoviemashup';
arrFadeLinks[5] = 'http://twitter.com/ESBAle/statuses/10251313905';
arrFadeTitles[5] = 'Less Than Zero 7 #musicmoviemashup';
arrFadeLinks[6] = 'http://twitter.com/ESBAle/statuses/10251280973';
arrFadeTitles[6] = 'Stairway to Heaven Can Wait #musicmoviemashup';
arrFadeLinks[7] = 'http://twitter.com/ESBAle/statuses/10249498212';
arrFadeTitles[7] = 'Hanging with @DaveRiv at Noc Noc thoroughly enjoying the Imperial Common from @SFBrewersGuild';
arrFadeLinks[8] = 'http://twitter.com/ESBAle/statuses/10208088973';
arrFadeTitles[8] = '@vanderdans Would love to trade brews sometime. Cheers!';
arrFadeLinks[9] = 'http://twitter.com/ESBAle/statuses/10199009902';
arrFadeTitles[9] = '@hrevans5 hi there. Shoot me an email: Richard@elizabethstreetbrewery.com Thanks for reaching out and cheers!!';
}
// 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);
	});
});