function goSort() {
            var sort=document.getElementById('sort');
            window.location.href = 'videos.php?sort='+sort.sortby.value;
}

function goSortPhotos() {
            var sort=document.getElementById('sort');
            window.location.href = 'photos.php?sort='+sort.sortby.value;
}

$(document).ready(function() {

    // Expand Panel
    $("#open").click(function(){
        $("div#panel").slideDown("slow");
    });

    // Collapse Panel
    $("#close").click(function(){
        $("div#panel").slideUp("slow");
    });

    // Switch buttons from "Log In | Register" to "Close Panel" on click
    $("#toggle a").click(function () {
        $("#toggle a").toggle();
    });

});