<!--
var imgData = new Array()
imgData[0] = { N: "WadoTech", I:ImgLoad('../images/SiteMap/wadotech.gif').src, H:ImgLoad('../images/SiteMap/wadotechh.gif').src,
               D: "This contains information about the Wado-Ryu Karate-Do style, including a discussion of gradings." }
imgData[1] = { N: "AboutWKA", I:ImgLoad('../images/SiteMap/aboutwka.gif').src, H:ImgLoad('../images/SiteMap/aboutwkah.gif').src,
               D: "Information about the club, including class times and locations, and profiles of the instructors. Also a list of annual Wado-Ryu events and full competition results." }
imgData[2] = { N: "WKANews", I:ImgLoad('../images/SiteMap/wkanews.gif').src, H:ImgLoad('../images/SiteMap/wkanewsh.gif').src,
               D: "The latest news about the W.K.A., including competition successes and grading results." }
imgData[3] = { N: "Academy", I:ImgLoad('../images/SiteMap/academy.gif').src, H:ImgLoad('../images/SiteMap/academyh.gif').src,
               D: "Information about the Wado-Ryu Karate-Do Academy, including a profile of Sensei Shiomitsu." }
imgData[4] = { N: "Merchandise", I:ImgLoad('../images/SiteMap/merchand.gif').src, H:ImgLoad('../images/SiteMap/merchandh.gif').src,
               D: "This contains merchandise, such as books, that are endorsed by the W.K.A." }
imgData[5] = { N: "AboutWado", I:ImgLoad('../images/SiteMap/wadohist.gif').src, H:ImgLoad('../images/SiteMap/wadohisth.gif').src,
               D: "The history of Wado-Ryu Karate-Do, including a profile of Ohtsuka Sensei I, the founder of Wado-Ryu Karate-Do." }
imgData[6] = { N: "Photos", I:ImgLoad('../images/SiteMap/gallery.gif').src, H:ImgLoad('../images/SiteMap/galleryh.gif').src,
               D: "Photos from training sessions and competitions. Also group photos from clubs in the W.K.A." }
imgData[7] = { N: "WadoLinks", I:ImgLoad('../images/SiteMap/wadolinks.gif').src, H:ImgLoad('../images/SiteMap/wadolinksh.gif').src,
               D: "Links to other websites of Wado-Ryu Karate-Do clubs, as well as sites of national and international karate organisations." }

// Browser recognition
strBrowserName = navigator.appName;
nBrowserVersion = parseInt(navigator.appVersion)
bCanDisplay = false

// Work out whether we can show the descriptions at all.
if (   ( strBrowserName == "Netscape" && nBrowserVersion >= 4 ) 
    || ( strBrowserName == "Microsoft Internet Explorer" && nBrowserVersion >= 4 ) )
{
    bCanDisplay = true

    if ( strBrowserName == "Netscape" )
    {
        DHTML = false
    }
    else
    {
        DHTML = true
    }
}

// If we a valid browser type with high enough spec, we can display the description about the
// area in the site description area of the table.
function display( index )
{
    if ( bCanDisplay ){
        msg = ""; if ( index >= 0 ) { msg = "<strong>Contents:</strong><br>"; msg = msg + imgData[index].D; }
	
        if ( DHTML == false ) {
            // This code is client-side navigator
            document.layers['SiteDesc'].document.writeln(msg)
            document.layers['SiteDesc'].document.close();	
        }
        else{
            SiteDesc.innerHTML = msg
        }
    }
}

function MouseOver( index )
{
    if ( ActNav ){
        document[imgData[index].N].src=imgData[index].H
        display(index)
    }
}

function MouseOut( index )
{
    if ( ActNav ){
        document[imgData[index].N].src=imgData[index].I
        display(-1)
    }
}

// -->

