﻿function changeState(state) {

    document.getElementById("butNSW").className = "";
    document.getElementById("butNT").className = "";
    document.getElementById("butSA").className = "";
    document.getElementById("butVIC").className = "";
    document.getElementById("butTAS").className = "";
    document.getElementById("butQLD").className = "";
    document.getElementById("butWA").className = "";
    document.getElementById("butACT").className = "";
    document.getElementById("but" + state).className = "activeLink";

    document.getElementById("ctl00_ContentPlaceHolder2_GridViewVIC").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewTAS").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewQLD").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewNSW").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewNT").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewSA").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewWA").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridViewACT").style.display = "none";
    document.getElementById("ctl00_ContentPlaceHolder2_GridView" + state).style.display = "";

}

function clickAmbassador() {
    document.getElementById("ctl00_maincolumn").innerHTML = "<div class=\"splatterheading\" style=\"width:300px\"><b>Drew Ginn & James Tomkins</b></div><br /><div style=\"padding: 10px 10px 0px 10px\">Proud Ambassadors of Repco Sport<br /> \Two of Australia\'s greatest rowers and Repco ambassadors, Drew Ginn and James Tomkins, are the perfect example of the values Repco stands for: performance and a true Australian spirit. These Aussie champions, as part of the world famous Oarsome Foursome, rowed their way into Australian sporting history by winning gold at the 1996 Atlanta Olympics.<br /><br />Drew Ginn and James Tomkins formed the dynamic duo that set the rowing world alight in the 1999 World Championships and quickly became Aussie favourites in the sporting arena. They went on to win gold in the 2003 World Championships and the 2004 Olympic Games in Athens.<br />The three-time Olympic gold medalist, James Tomkins, is the only rower in history to win a world championship title in every sweep oar event. Rowing with partner and dual Olympic gold medalist, Drew Ginn, this outstanding pair is bound to make Australia proud in the 2008 Beijing Olympics and Repco Sport will be supporting them all the way.</div>";
    
}