Is there an easy way to make this into a sliding div that goes from left to right basing what code snippet I have provided below that is up/down?
So rather having it go up/down, make it go left/right?
$(document).ready(function() {
$("#open").click(function(){
$("div#panel").slideDown("slow");
});
$("#close").click(function(){
$("div#panel").slideUp("slow");
});
$("#toggle a").click(function () {
$("#toggle a").toggle();
});
});