// SLIDING PANELS
function panel1() {
    $("#slideshow").stop().animate({
        left: "0px",
        top: "0px"
    }, {
        easing: "easeOutBack",
        duration: 750
    });
}

function panel2() {
    $("#slideshow").stop().animate({
        left: "-590px",
        top: "0px"
    }, {
        easing: "easeOutBack",
        duration: 750
    });
}

function panel3() {
    $("#slideshow").stop().animate({
        left: "-1180px",
        top: "0px"
    }, {
        easing: "easeOutBack",
        duration: 750
    });
}

function panel4() {
    $("#slideshow").stop().animate({
        left: "-1770px",
        top: "0px"
    }, {
        easing: "easeOutBack",
        duration: 750
    });
}
