﻿


$(function() {

    //THERAPY CENTRE FUNCTIONS
    var Promoanchor = $(".promolink");

    Promoanchor.click(function(event) {
        var ID = event.target.id;
        //document.write(ID);

        var pnlDisplayCentre = $("#Promo_" + ID);
      pnlDisplayCentre.toggle("slow");

    }); //End of anchor function


//    var anchor = $(".centreanchor");
//    anchor.click(function(event) {
//        var ID = event.target.id;
//        //Any element which is inside this containing div is being slid upwards
//        var pnlCentre_CurrentDisplay = $(".CentreItemWrap");
//        pnlCentre_CurrentDisplay.slideUp("slow");
//        //The currently selected div is then being slide down
//        //var pnlFAQ = $("#ctl00_ContentPlaceHolder_onecol_pnl_FAQ_" + ID);
//        //pnlFAQ.slideDown("slow");
//    }); //End of anchor function


}); //CLOSE DOCUMENT READY

