/* Top Navigation Bar Settings */
function setAnimTopNavigation() {
    //Set top navigation bar parent id
    animBarSetIndexBar('wrap-nav');
    //set the initial object.style.top. IE: If the object in a CSS as object{ top: 27px;} use animBarSetInitialTop(27)
    animBarSetSubMenu('subnav');
    animBarSetInitialTop(27);
    //set the number of pixels in height for the menu bar to rise up
    animBarSetTopIncrease(21);
    //Set All child elements by id
    animBarSetTopOffSet(5);
    //Set the active link color
    animBarSetActiveLinkColor('#c6da45')
    //Function reference: animBarAddChild('Link ID', 'Sub Navigation DIV ID');
    animBarAddChild('nav0', 'subnav0');
    animBarAddChild('nav1', 'subnav1');
    animBarAddChild('nav2', 'subnav2');
    animBarAddChild('nav3', 'subnav3');
	animBarClearChild('nav4');
    animBarAddChild('nav5', 'subnav5');
}


