﻿/*
Taken from: http://www.ultramegatech.com/blog/examples/slidein/
Date: 2010-04-29
Modified to slide horizontally
*/

var sipPos = 0;
$(document).ready(function() {
    $("#panel-tab").click(function() {
        $("#panel").animate({ right: sipPos }, 350, 'linear', function() {
            if (sipPos == 0) { sipPos = -350; }
            else { sipPos = 0; }
        });
    });
});
