if (!window.Collabsable) var Collabsable = {

    toggle: function(target, content) {
        $(content).toggle();
        if ($(target).hasClassName('blindLinkExpand')) {
            $(target).className = 'blindLinkCollapse';
        } else {
            $(target).className = 'blindLinkExpand';
        }
        return false;
    }
};



