							var fadeInProgress=false;
							
							function initImage() {
								if(!fadeInProgress){
									imageId = 'featureImage';
									image = document.getElementById(imageId);
									setOpacity(image, 0);
									image.style.visibility = "visible";
									fadeIn(imageId,0);
								}
							}
							function fadeIn(objId,opacity) {
								if (document.getElementById) {
									fadeInProgress=true;
									obj = document.getElementById(objId);
									if (opacity <= 100) {									
										setOpacity(obj, opacity);
										opacity += 10;
										window.setTimeout("fadeIn('"+objId+"',"+opacity+")", 50);
									}
									else fadeInProgress = false;
								}
							}
							function setOpacity(obj, opacity) {
								opacity = (opacity == 100)?99.999:opacity;
								// IE/Win
								obj.style.filter = "alpha(opacity:"+opacity+")";
								// Safari<1.2, Konqueror
								obj.style.KHTMLOpacity = opacity/100;
								// Older Mozilla and Firefox
								obj.style.MozOpacity = opacity/100;
								// Safari 1.2, newer Firefox and Mozilla, CSS3
								obj.style.opacity = opacity/100;
							}
							//window.onload = function() {initImage()}
							
							var numFeatures = 1;
							var activeFeature = 0;							
							var duration = 200;
							var rotationTime = 5000;
							var backgroundImages = [];
							var featuresPaused = false;				
							
							/**
							 * Reset all featured content, then select appropriate one
							 *
							 * @param  	featureNum 	integer of link to show, appended to 'feature' to 
							 *						create a variable name referenceing HTML code
							 */			
							function rolloverFeature(featureNum){
								pauseFeatures();
								selectFeature(featureNum);							
							}
												
							function selectFeature(featureNum){								
								if(featureNum!=activeFeature){
									for (i = 1; i <= numFeatures; i++){
										if(i==featureNum) activateFeature(i);
										else deactivateFeature(i);
									}
								}																										
							}
							
							function activateFeature(featureNum){
								activeFeature = featureNum;
								document.getElementById("feature"+featureNum).className='selected';
								backgroundString="#FFF URL("+backgroundImages[featureNum-1]+") no-repeat top left";
								document.getElementById("featureImage").style.background=backgroundString;
								if(!fadeInProgress)initImage();
							}
							
							function deactivateFeature(featureNum){
								document.getElementById("feature"+featureNum).className='';
																																		
							}
							
							function rotateFeatures(){
								if(activeFeature < numFeatures) nextFeature = activeFeature+1;
								else nextFeature = 1;
								selectFeature(nextFeature);
							}
							
							function pauseFeatures(){featuresPaused = true;}
							function unpauseFeatures(){featuresPaused = false;}
							
							function playFeatures(){
								if(!featuresPaused) rotateFeatures();
								var t=setTimeout("playFeatures()",rotationTime);
							}
