<!-- Begin
function changeText(page) {
        var text = "";
        document.getElementById('content').innerHTML = "";
        switch (page)
        {
            case "home":
              parent.gallery.hideGall();
              text = "<span class='bold'>Home</span><br><br> <span class='norm'>I design simple, timeless outdoor spaces for contemporary living. <br><br>\
My work is characterised by generous proportions, strong geometry softened with luxurious planting and suitability to the site. <br><br>I enjoy working closely with my\
 clients and involve them at all stages of the design process.<br><br><br>";       
            break
            case "portfolio":
            parent.gallery.showGall();
                text = "<span class='bold'>Portfolio</span><br><br><span class='bodyLinks'>\
<p><a href='javascript:parent.gallery.imgClick(1);'>A country garden with courtyard</a></p>\
<p><a href='javascript:parent.gallery.imgClick(2);'>Garden for a terraced London house</a></p>\
<p><a href='javascript:parent.gallery.imgClick(3);'>A suburban family garden</a></p>\
<p><a href='javascript:parent.gallery.imgClick(4);'>A pool garden</a></p>\
<p><a href='javascript:parent.gallery.imgClick(5);'>Water in the garden</a></p>\
<p><a href='javascript:parent.gallery.imgClick(6);'>Small Gardens</a></p>\
</span> <BR>";
            break
            case "contact":
            parent.gallery.hideGall();
              text = "<span class='bold'>Contact</span><br><br><br><br><span class='norm'><b>Please contact me on:</b>\
<br><br>telephone: (01483) 429171</br><span class='bodyLinks'><a href='mailto:joy@joyjardine.com' title='email'>joy@joyjardine.com</a></span></span> <BR>";
            break
            case "links":
            parent.gallery.hideGall();
              text = "<span class='bold'>Links</span><br><br><span class='norm'></span></br></br>\
</span> <BR>";
            break
            default:
              text = "<span class='norm'>An error has occured with this link, please try another.</span>";
        }

    document.getElementById('content').innerHTML = text;
}

//  End -->