/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function doButtons(picimage) {
        var chester = new Image();
        var liverpool = new Image();
        var wirral  =  new Image();
        var wrexham=  new Image();
        chester.src = "http://thechiroclinic.co.uk/images/home-page-buttons-over_03.jpg";
        liverpool.src = "http://thechiroclinic.co.uk/images/home-page-buttons-over_05.jpg";
        wirral.src = "http://thechiroclinic.co.uk/images/home-page-buttons-over_07.jpg";
        wrexham.src = "http://thechiroclinic.co.uk/images/home-page-buttons-over_09.jpg";
        eval("document[picimage].src = " + picimage + ".src");
}

function resetButtons(picimage) {
        var chester = new Image();
        var liverpool = new Image();
        var wirral  =  new Image();
        var wrexham=  new Image();
        chester.src = "http://thechiroclinic.co.uk/images/home-page-buttons_03.jpg";
        liverpool.src = "http://thechiroclinic.co.uk/images/home-page-buttons_05.jpg";
        wirral.src = "http://thechiroclinic.co.uk/images/home-page-buttons_07.jpg";
        wrexham.src = "http://thechiroclinic.co.uk/images/home-page-buttons_09.jpg";
        eval("document[picimage].src = " + picimage + ".src");
}

