/* 
Workfile: 	CustomFunctions.js
Copyright: 	Copyright 2003 by G1440, Inc. All rights reserved
Author(s): 	Joe Yingling jyingling@g1440.com
Created: 	December 01, 2003
Description: CustomFunctions.js Template
This file contains custom javascript fuctions.
These functions will generally be used by the front-end (ie. UI public sites)
and will most likely vary for each SiteBuilder1440 implementation.
*/ 

function getNavColorValue(colorName) {
    // default to red
    var colorValue = "0xED1B2D";
    if (colorName.toLowerCase() == "red") {
        colorValue = "0xED1B2D";
    } else if (colorName.toLowerCase() == "orange") {
        colorValue = "0xFFB515";
    } else if (colorName.toLowerCase() == "blue") {
        colorValue = "0x2375CF";
    } else if (colorName.toLowerCase() == "green") {
        colorValue = "0x52B929";
    }
    return colorValue;

}
