loadEvents.add(function(){
	//Image swap stuff
	var swapperImg = document.getElementById('scSwapperImg');
	var scImgSwapList = document.getElementById('scImgSwaps');
	var scImgSwapLinks = scImgSwapList.getElementsByTagName('A');
	
	var sc = document.getElementById('supporting-content');
	
	var swapperTextNode = document.createTextNode('');
	
	var swapperP = document.createElement('P');
	swapperP.id = 'swapperText';
	swapperP.appendChild(swapperTextNode);
	
	sc.insertBefore(swapperP, scImgSwapList);
	
	swapperTextNode.nodeValue = scImgSwapLinks[0].title;
	
	var lnk;
	for(var i = 0; lnk = scImgSwapLinks[i]; i++ ){
		lnk.onclick = function(){
			selectedSwapLink.setState('up');
			selectedSwapLink = this;
			swapperTextNode.nodeValue = this.title ? this.title : ' '; // use a non-breaking space if there's no title
			swapperImg.src = this.href;
			return false;
		}
		lnk.onmouseover = function(){
			if(selectedSwapLink != this){
				selectedSwapLink.setState('up');
				this.setState('over');
			}
		}
		lnk.onmouseout = function(){
			if(selectedSwapLink != this){
				selectedSwapLink.setState('over');
				this.setState('up');
			}
		}
		lnk.setState = function(s){ 
			this.firstChild.src = 'images/btn_imgSwap'+ this.firstChild.alt +'_'+ s +'.gif';
		}
		lnk.onfocus = function(){
			this.blur();
		}
	}
	
	var selectedSwapLink = scImgSwapLinks[0];
	selectedSwapLink.setState('over');
});