﻿function closeall() {
    $("div#allcollections").hide("fast");
    $("div#leavefeedback").hide("fast");
    $("div#licensingenquiry").hide("fast");
    $("div#contact").hide("fast");
};
$(document).ready(function() {
    $("input.closeAll").bind("click", function() {
        $("div#allcollections").hide("fast");
        $("div#leavefeedback").hide("fast");
        $("div#licensingenquiry").hide("fast");
        $("div#contact").hide("fast");
    });

    $("a#btnAllCollections").toggle(
            function() {

        $("div#allcollections").show("fast");
        $("div#leavefeedback").hide("fast");
        $("div#licensingenquiry").hide("fast");
        $("div#contact").hide("fast");
        $("div.slideshow").hide();
    },
            function() {
        $("div#allcollections").hide("fast");
        $("div.slideshow").show();
    }
            );

    $("a#btnLeaveFeedback").toggle(
            function() {
        $("div#allcollections").hide("fast");
        $("div#leavefeedback").show("fast");
        $("div#licensingenquiry").hide("fast");
        $("div#contact").hide("fast");
        $("div.slideshow").hide();
    },
            function() {
        $("div#leavefeedback").hide("fast");
        $("div.slideshow").show();
    }
            );

    $("a#btnLicensingEnquiry").toggle(
            function() {
        $("div#allcollections").hide("fast");
        $("div#leavefeedback").hide("fast");
        $("div#licensingenquiry").show("fast");
        $("div#contact").hide("fast");
        $("div.slideshow").hide();
    },
            function() {
        $("div#licensingenquiry").hide("fast");
        $("div.slideshow").show();
    }
            );

    $("a#btnContact").toggle(
            function() {
        $("div#allcollections").hide("fast");
        $("div#leavefeedback").hide("fast");
        $("div#licensingenquiry").hide("fast");
        $("div#contact").show("fast");
        $("div.slideshow").hide();
    },
            function() {
        $("div#contact").hide("fast");
        $("div.slideshow").show();
    }
            );
});