/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var foundationNav =
    "<table cellspacing=\"0\" cellpadding=\"0\">" +
        "<tr>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\"><a href=\"whoWeAre.html\">Who We Are</a></br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\">Donations</br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\">Brandon And Paul</br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\">The New Normal</br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"208px\">Achievements</br></td>" +
        "</tr>" +
    "</table>";

var tournamentNav =
    "<table cellspacing=\"0\" cellpadding=\"0\">" +
        "<tr>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\"><a href=\"tournamentInfo.html\">Information</a></br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\">Past Tournaments</br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\"><a href=\"registration.html\">Registration</a></br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"204px\">Tournament Merch</br></td>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat; text-align:center\" height=\"35px\" width=\"208px\"><a href=\"tournamentSponsors.html\">Sponsors</a></br></td>" +
        "</tr>" +
    "</table>";

var emptyNav =
    "<table cellspacing=\"0\" cellpadding=\"0\">" +
        "<tr>" +
            "<td style=\"background-image: url(images/NavBackground.jpg); background-repeat: no-repeat;\" height=\"35px\" width=\"1024\"></br></td>" +
        "</tr>" +
    "</table>";

function load(){
    legalOver();
}

function changeContent(content){
  document.getElementById('contentDiv').innerHTML = content;
}

function changeNav(content){
  document.getElementById('navButtons').innerHTML = content;
}

function foundationClick(){
     window.location.href = "index.html";
}

function foundationOver(){
    changeNav(foundationNav);
}

function foundationWhoWeAreClick(){
    window.location.href = "whoWeAre.html"
}

function tournamentClick(){
 window.location.href = "tournamentInfo.html";
}

function tournamentOver(){
    changeNav(tournamentNav);
}

function contactClick(){
 window.location.href = "contact.html";
}

function contactOver(){
    changeNav(emptyNav);
}

function legalClick(){
 window.location.href = "legal.html";
}

function legalOver(){
    changeNav(emptyNav);
}



