<!--

function breadcrumbOnMouseOver(element) {
    /*
    var bubble = $(element).firstDescendant();
    if (bubble) { bubble.show(); }
    */
}

function breadcrumbOnMouseOut(element) {
    /*
    var bubble = $(element).firstDescendant();
    if (bubble) { bubble.hide(); }
    */
}

function isInfantCode(code) {
    return (code == "451");
}

function isUnaccompaniedChildCode(code) {
    return (code == "420");
}

function isAccompaniedCode(code) {
    return (code == "418");
}

function isAdultCode(code) {
    return (code == "IAD");
}

//-->