
function initPromo() {
		var _box = $("form-content");
		var _nav = $("form-nav");
		if (_box && _nav)
		{
			var fx = new Fx.Styles(_box, {
				duration:1000,
				wait:false
			});
			
			var flinks = _nav.getElements("a");
			flinks.each(function(link, i) {
				link._index = i;
				link.addEvent("click", function(event){
					new Event(event).stop();
					fx.start({
						'left': 0 - 409*this._index
					});
					flinks.each(function(fl){
						fl.className = fl.className.replace("active", "");
					});
					this.className += " active";
				});
				if (link.className.indexOf("active") != -1)
				{
					fx.start({
						'left': 0 - 409*link._index
					});
				}
			});
		}
		
		var _nav2 = $("form-nav-2");
		if (_box && _nav2)
		{
			var fx2 = new Fx.Styles(_box, {
				duration:1000,
				wait:false
			});
			
			var flinks2 = _nav2.getElements("a");
			flinks2.each(function(link, i) {
				link._index = i;
				link.addEvent("click", function(event){
					new Event(event).stop();
					fx2.start({
						'left': 0 - 409*this._index
					});
					flinks2.each(function(fl2){
						fl2.className = fl2.className.replace("active", "");
					});
					this.className += " active";
				});
				if (link.className.indexOf("active") != -1)
				{
					fx2.start({
						'left': 0 - 409*link._index
					});
				}
			});
		}





}

if (window.addEventListener) {
	window.addEventListener("load", initPromo, false);
}
else if (window.attachEvent) {
	window.attachEvent("onload", initPromo);
}
