﻿// JScript File
function SlideyShelf(elementId, speed)
{
    if (isUndefined(speed)) speed = 750;
    $(elementId).BlindToggleVertically(speed, null, 'bounceout');
}

function isUndefined(a) { return typeof a == 'undefined' }
