		function fadeLogo(){
			}
		function showLogo(){
		}
		window.addEvent('domready', function(){
			$$('.nav a').each(function(el){
				if(!$(el).hasClass('active')){
					$(el).set('morph', {duration: 300});
					$(el).addEvents({
						'mouseover' : function(el){
							$(el).morph({'opacity': 0.5});
						}.pass(el),
						'mouseout' : function(el){
							$(el).morph({'opacity': 1});
						}.pass(el),
						'click' : function(el){
							// Fade all buttons but the one selected
							$$('.nav a').each(function(el){
								$(el).set('morph', {duration: 300});
								$(el).morph({opacity:0.5});
							});
							/* Fade body
							$E('body').set('morph', {duration:500});
							$E('body').morph({opacity:0});
							*/
							url = $(el).getProperty('href');
							/*
							setTimeout('document.location = "' + url + '"',300);
							return false;
							*/
							$(el).morph({'opacity': 1});
						}.pass(el)
					});
				}
			});	
			
			//Fade header	
			$('logo_hover').set('morph', {duration: 300});
			$('logo_hover').addEvents({
				'mouseover' : function(el){
					$('logo_hover').morph({'opacity': 0.1});
				},
				'mouseout' : function(el){
					$('logo_hover').morph({'opacity': 1});
				}
			});
			
			//Image hover replacements
			$$('.hover').each(function(el){
				$(el).addEvents({
					'mouseover' : function(el){
						regImg = $(el).getProperty('src');
						hoverImg = regImg.replace(/(\.gif|\.jpg|\.png)/i, "-hover$1");
						$(el).setProperty('src', hoverImg);
					}.pass(el),
					'mouseout' : function(el){
						regImg = $(el).getProperty('src');
						hoverImg = regImg.replace(/-hover(\.gif|\.jpg|\.png)/i, "$1");
						$(el).setProperty('src', hoverImg);
					}.pass(el)
				});
			});		
			
			//Fade elements when hovered over
			$$('.fader').each(function(el){
				$(el).set('morph', {duration: 300});
				$(el).addEvents({
					'mouseover' : function(el){
						$(el).morph({opacity: 0.55});
					}.pass(el),
					'mouseout' : function(el){
						$(el).morph({opacity: 1});
					}.pass(el)
				});
			});
		});