function siteSection(){
var path = location.pathname;
var parsed = path.split("/");
var root = parsed[1];
var dir1 = "";
	if(root == "firstclassflyer"){
	root = "firstclassflyer";
	dir1 = parsed[2];
	return path;
	}
	else{
	root = "flightbliss";
	dir1 = parsed[1];
	path = "/flightbliss" + location.pathname;
	return path;
	}
}

function pageTitle(){
var title = document.title;
        return title;
}


