/*
var useNav = false;
window.addEvent('domready', function()
{
	
	
	
	var features = $$(".featurelink");
	
	
		
		
		features.addEvent("click", function (e)
		{
			

			window.location = $("sec" + this.name).href;
			e.stop();
			
		
		
		});
		features.addEvent("mouseover", function (e)
		{
			
			goto("sec" + this.name);
			e.stop();
			
		
		
		});
	
	$("rubberband").tween("top", 0);
	
	var currentSection = "sec1";
	
	function findDistance (newSection)
	{
		if(newSection)
		{
			var distance = 0;
			lis = $("rubberband").getElementsByTagName("a");
			var found = false;
			for (var i = 0; i < lis.length; i++) {
				var li = lis[i];
				if(li == $(newSection))
				{
					break;
				}
				
				if(li.className == "feature")
				{
					
				distance += li.offsetHeight;
				}
				
			}
			
			return distance;
			
		}
		return false;
	}
	function getPosition ()
	{
		var w = getWidth();
		var h = getHeight();
		var home = $("start").offsetWidth + 20;
		return (((w-home)/2));
	}
	var myFx = new Fx.Tween($("rubberband"));
	
	function moveStrip (section)
	{
		var strip = $("rubberband");
						
		newSpot = 0 - findDistance(section);
		
		
		//Transitions the background color of the Element from black to red:
		myFx.start('top', newSpot);
	
		//$("rubberband").tween("top", newSpot);
	}
	function goto (section)
	{
		
		lastSection = currentSection;
		
		
		
		if(section != currentSection)
		{
			moveStrip(section);
		
		}
		
		
		currentSection = section;
		
		
		
	}
	
	  
});

*/









