
function redirectToHome(sender, args) {

    window.location = "Default.aspx";
}

function redirectToAboutPage(sender, args) {

    window.location = "About.aspx";
}

function redirectToContactPage(sender, args) {

    window.location = "Contact.aspx";
}

function redirectToServicesPage(sender, args) {

    window.location = "CustomDevelopment.aspx";
}

function redirectToProductsPage(sender, args) {

    window.location = "Product.aspx";
}

function redirectToTrainingPage(sender, args) {

    window.location = "Training.aspx";
}

function redirectToProjectsPage(sender, args) {

    window.location = "Project.aspx";
}

function redirectToSupportPage(sender, args) {

    window.location = "Support.aspx";
}

function about_MouseEnter(sender,args)
{
    sender.findName("About").foreground="#FFBF8A08";
}

function about_MouseLeave(sender,args)
{
    sender.findName("About").foreground="#FFFFFFFF";
}

function contact_MouseEnter(sender,args)
{
    sender.findName("Contact").foreground="#FFBF8A08";
}

function contact_MouseLeave(sender,args)
{
    sender.findName("Contact").foreground="#FFFFFFFF";
}

function services_MouseEnter(sender,args)
{
    sender.findName("Services").foreground="#FFBF8A08";
}

function services_MouseLeave(sender,args)
{
    sender.findName("Services").foreground="#FFFFFFFF";
}

function products_MouseEnter(sender,args)
{
    sender.findName("Products").foreground="#FFBF8A08";
}

function products_MouseLeave(sender,args)
{
    sender.findName("Products").foreground="#FFFFFFFF";
}

function training_MouseEnter(sender,args)
{
    sender.findName("Training").foreground="#FFBF8A08";
}

function training_MouseLeave(sender,args)
{
    sender.findName("Training").foreground="#FFFFFFFF";
}

function projects_MouseEnter(sender,args)
{
    sender.findName("Projects").foreground="#FFBF8A08";
}

function projects_MouseLeave(sender,args)
{
    sender.findName("Projects").foreground="#FFFFFFFF";
}

function support_MouseEnter(sender,args)
{
    sender.findName("Support").foreground="#FFBF8A08";
}

function support_MouseLeave(sender,args)
{
    sender.findName("Support").foreground="#FFFFFFFF";
}





