﻿/* dependent on JQuery */
/* dajw, dhaus.com*/

/* Customised by phkendall for use on new home page */

// initialization defaults
var customisePanelVisibility = false;


// handle thumb image click
$("#customise-link").click(function() {
    toggleCustomisePanelVisibility();
    return false;
});


// toggle the visibility of the customise panel
function toggleCustomisePanelVisibility()
{
    if (customisePanelVisibility==false)
    {
        // show the panel
        $(".customise-wrap").slideDown("slow", function() {
            $(".customise-inner").fadeIn("slow");
        });
        $(".customise").addClass("customise-on");
    }
    else
    {
        // hide the panel
        $(".customise-inner").fadeOut("slow", function() {
            $(".customise-wrap").slideUp("slow");
        });
        $(".customise").removeClass("customise-on");
    }
    // store current state
    customisePanelVisibility = !customisePanelVisibility;
}
