function switchToAbout()
	{
	if( $('#about').is(':hidden') ) {
			$("#contact").fadeOut("slow");
			$("#about").fadeIn("slow");
			$(".about").removeClass("aboutex");
			$(".contact").addClass("contactex");
		  }
	}			
function switchToContact()
	{
	if( $('#contact').is(':hidden') ) {
			$("#about").fadeOut("slow");
			$("#contact").fadeIn("slow");
			$(".contact").removeClass("contactex");
			$(".about").addClass("aboutex");
		  }
	}
$(document).ready(function() {
	$(".switchlink").click(function() {
	$(this).removeClass("switchlink");
	$(".switchlink").animate({ 'padding-right':'3px'}, 'fast');  
	$(this).animate({ 'padding-right':'10px'}, 'normal');
	$(this).addClass('switchlink');
	})
	
	
	var show = null;
	var hide = null;
	$('#footer').hover(function() {
		if(hide) clearTimeout(hide);
		function showw() {
			$('#footer').animate({'opacity': '1.0'}, 'normal');
		}
		show = setTimeout(showw,500);
		},
		function() {
		if(show) clearTimeout(show);
		function hidee() {
			$('#footer').animate({'opacity': '0.5'}, 'normal');
		}
		hide = setTimeout(hidee,500);
		})
});