﻿function flipME(obj) {
    try {
        var innerList = obj.parentNode.getElementsByTagName("UL")[0];
        if (innerList.style.display == 'none') {
            innerList.style.display = 'block';
        }
        else {
            innerList.style.display = 'none';
        }
    }
    catch (e) {
    }
}
