// Site configuration file

var pages=[

    [   "Home"              ,   "index.html"            ]   ,   // 0
    [   "Contact Details"   ,   "contact.html"          ]   ,   // 1
    [   "Club Membership"   ,   "clubmembership.html"   ]   ,   // 2
    [   "Club Fly-in Venue" ,   "clubflyinvenue.html"   ]   ,   // 3
    [   "Festival Info"     ,   "festivalinfo.html"     ]   ,   // 4
    [   "Club Calendar"     ,   "clubcalendar.html"     ]   ,   // 5
    [   "Club History"      ,   "clubhistory.html"      ]       // 6
    
];

var attention={4:true}; // bring attention to certain pages by highlighting them in a different colour
var attentionFlash=true; // make the attention pages flash/glow?
var attentionTimer=2; // time in seconds between flash/glow (requires attentionFlash=true)

// Please change nothing below this point

var landingPage=0; 
function grab(o){ return document.all?document.all[o]:document.getElementById?document.getElementById(o):""; }
function nav(o){
    var currentPage=unescape(location).split("/");
    currentPage=currentPage[currentPage.length-1].split("#")[0];
    if(currentPage.indexOf(".")==-1){ currentPage=pages[landingPage][1]; }
    var _nav_ul=document.createElement("ul");
    for(var i in pages){
        if(pages.hasOwnProperty(i)){
            var _ul_li=document.createElement("li");
                _ul_li.className=pages[i][1]==currentPage?"active":attention.hasOwnProperty(i)?"attention":"";
                _ul_li.onclick=function(){ location=this.children[1].href; }
            if(attentionFlash===true&&pages[i][1]!=currentPage&&attention.hasOwnProperty(i)){
                navFlash(_ul_li);
            }
            var _li_a=document.createElement("a");
                _li_a.href=pages[i][1];
                _li_a.innerHTML=pages[i][0];
                _li_a.style.position="relative";
                _li_a.style.zIndex="1";
            var _li_img=document.createElement("img");
                _li_img.src="img/gvkf50a.png";
                _li_img.style.position="absolute";
                _li_img.style.width="50px";
                _li_img.style.height="50px";
                _li_img.style.marginTop="-10px";
                _li_img.style.marginLeft="-45px";
                _li_img.style.zIndex="2";
            if(pages[i][1]!=currentPage){ _ul_li.appendChild(_li_img); }
            _ul_li.appendChild(_li_a);
            
            _nav_ul.appendChild(_ul_li);
        }
    }
    o.appendChild(_nav_ul);
}
function navFlash(o){
    o.className=o.className=="attention"?"":"attention";
    setTimeout(function(){ navFlash(o); },attentionTimer*1000);
}
