///<reference path="jquery.intellisense.js"/>

function setupNavigation() {
    // Top nav
    jQuery("#homeButton, #homeButtonBottom").click(function() {
        jQuery("#homeButton, #homeButtonBottom").addClass("selected");
        jQuery("#aboutButton, #servicesButton, #contactButton, #aboutButtonBottom, #servicesButtonBottom, #contactButtonBottom").removeClass("selected");

        getPage("home.html", "Home");
    });

    jQuery("#aboutButton, #aboutButtonBottom").click(function() {
        jQuery("#aboutButton, #aboutButtonBottom").addClass("selected");
        jQuery("#homeButton, #servicesButton, #contactButton, #homeButtonBottom, #servicesButtonBottom, #contactButtonBottom").removeClass("selected");

        getPage("about.html", "About Us");
    });

    jQuery("#servicesButton, #servicesButtonBottom").click(function() {
        jQuery("#homeButton, #aboutButton, #contactButton, homeButtonBottom, #aboutButtonBottom, #contactButtonBottom").removeClass("selected");
        jQuery("#servicesButton, #servicesButtonBottom").addClass("selected");

        getPage("services.html", "Services");
    });

    jQuery("#contactButton, #contactButtonBottom").click(function() {
        jQuery("#homeButton, #aboutButton, #servicesButton, #homeButtonBottom, #aboutButtonBottom, #servicesButtonBottom").removeClass("selected");
        jQuery("#contactButton, #contactButtonBottom").addClass("selected");

        getPage("contact.html", "Contact Us");
    });

    jQuery("#brandMarketing").click(function() {
        jQuery("#homeButton, #homeButtonBottom, #aboutButton, #servicesButton, #contactButton, #aboutButtonBottom, #servicesButtonBottom, #contactButtonBottom").removeClass("selected");

        getPage("brandMarketing_services.html", "Brand Development & Marketing");
    });

    jQuery("#digitalPrinting").click(function() {
    jQuery("#homeButton, #homeButtonBottom, #aboutButton, #servicesButton, #contactButton, #aboutButtonBottom, #servicesButtonBottom, #contactButtonBottom").removeClass("selected");
        
        getPage("print_services.html", "Digital Printing");
    });

    jQuery("#graphicDesign").click(function() {
    jQuery("#homeButton, #homeButtonBottom, #aboutButton, #servicesButton, #contactButton, #aboutButtonBottom, #servicesButtonBottom, #contactButtonBottom").removeClass("selected");
        
        getPage("graphicDesign_services.html", "Graphic Design Services");
    });

    jQuery("#webDesign").click(function() {
        jQuery("#homeButton, #homeButtonBottom, #aboutButton, #servicesButton, #contactButton, #aboutButtonBottom, #servicesButtonBottom, #contactButtonBottom").removeClass("selected");

        getPage("web_services.html", "Web Design Solutions");
    });
}
