function showHomeElement(elementName)
{
        document.getElementById("afb-caring").style.display = "none";
        document.getElementById("afb-attention").style.display = "none";
        document.getElementById("afb-recruiting").style.display = "none";
        document.getElementById("afb-integrity").style.display = "none";
        document.getElementById("afb-networking").style.display = "none";
        document.getElementById("afb-globalising").style.display = "none";
        document.getElementById(elementName).style.display = "block";
        elementCount = getValueForElement(elementName);
}
function getValueForElement(value)
{
        if(value == "afb-caring"){
                return 0;
        }
        if(value == "afb-attention"){
                return 1;
        }
        if(value == "afb-recruiting"){
                return 2;
        }
        if(value == "afb-integrity"){
                return 3;
        }
        if(value == "afb-networking"){
                return 4;
        }
        if(value == "afb-globalising"){
                return 5;
        }
        return 0;
}
var elementCount = 0;
var elements = ["afb-caring","afb-attention","afb-recruiting","afb-integrity","afb-networking","afb-globalising"];
function showNextElement()
{
        if(++elementCount >= elements.length)
        {
                elementCount = 0;
        }
        showHomeElement(elements[elementCount]);
        t = setTimeout(showNextElement,7000);
}
function startHomeCounter()
{
        var t=setTimeout(showNextElement,7000);
}
function show(elementID){
        document.getElementById(elementID).style.display = "block";
}
function hide(elementID){
        document.getElementById(elementID).style.display = "none";
}

