function go(){tips(); var el = $('description'); var el3 = $('header-links'); var el4 = $('footer');  var fxdi = new Fx.Style('description', 'backgroundColor', {			duration: 500, 			transition: Fx.Transitions.Sine.easeInOut,			wait: false			});						var fxdi3 = new Fx.Style('header-links', 'backgroundColor', {			duration: 500, 			transition: Fx.Transitions.Sine.easeInOut,			wait: false			});				var fxdi4 = new Fx.Style('footer', 'backgroundColor', {			duration: 500, 			transition: Fx.Transitions.Sine.easeInOut,			wait: false			});			    el.addEvent('mouseenter', function() {	        fxdi.start('#101010');			});				el.addEvent('mouseleave', function() {	        fxdi.start('#272729');			});					el3.addEvent('mouseenter', function() {	        fxdi3.start('#101010');			});				el3.addEvent('mouseleave', function() {	        fxdi3.start('#202020');			});					el4.addEvent('mouseenter', function() {	        fxdi4.start('#101010');			});				el4.addEvent('mouseleave', function() {	        fxdi4.start('#202020');			});					}function tips(){window.addEvent('domready', function(){			/* Tips 2 */			var Tips2 = new Tips($$('.Tips2'), {				initialize:function(){					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);				},				onShow: function(toolTip) {					this.fx.start(1);				},				onHide: function(toolTip) {					this.fx.start(0);				}			});								}); }
