function initIntro()
	{
		$("a").bind("click", function() {
			fadeIntro($(this).attr('href'));
			return false;
		});
	}

function fadeIntro(newLocation)
	{
		$("#overlay").fadeIn(1500, function(){
				window.location = newLocation;
			});
	}

$(document).ready( function() { initIntro(); } );
