function passportOpen(section) {
	if ($('#passport')) 
		$('#passport').remove();
	$('#footer').prepend('<div id="passport"><div id="flashPass">&nbsp;</div></div>');
	var flashvars = {
		ppsection: section
	}
	var params = {
		menu: 'false',
		wmode: 'transparent',
		allowscriptaccess: 'always'
	};
	var attributes = {};
	swfobject.embedSWF(rootPath + "swf/footer_passport.swf", "flashPass", "100%", "100%", "9.0.0", rootPath + "../swf/expressInstall.swf", flashvars, params, attributes);
}

function passportClose() {
	$('#passport').remove();
}

function spawnPassport() {
	$('#topNav li a').hover(function() {
		if ($(this).parent().attr('class') != 'home') 
			passportOpen($(this).parent().attr('class'));
	}, function() {
		if ($(this).parent().attr('class') != 'home')
			passportClose();
	});
}