I wish I could do a screenshot to show how badly my dashboard is messed up... the scroll across the top starts about 2 inches from the right hand side.. then theres
var pMenu = new Array('ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubDashboard',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubTrade',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubResearch',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubNews',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubLearn',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubCommunity',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubVideo',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_pSubStore'
);
var ulMenu = new Array('ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulDashboard',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulTrade',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulResearch',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulNews',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulLearn',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulCommunity',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulVideo',
'ctl00_ctl00_bhcr_ntrnHeader_ctl04_ulStore'
);
var _pItem, _ulItem; // panel and ul for submenu
var _current; // menu item of current page im in
var _clearID;
// SHOW SUB MENU FUNCTIONS
function setActiveSub(pItem,ulItem)
{
clearInterval(_clearID);
_pItem = pItem;
_ulItem = ulItem;
setTimeout("beginActiveSub()",0);
}
function beginActiveSub()
{
var dWrapper = document.getElementById('dWrapper');
if (dWrapper){ dWrapper.className = 'navigation-wrapper-over'; }
hideAll();
showOne(_pItem);
var uu = document.getElementById(_ulItem);
uu.className = uu.className.match('current') ? 'select current' : 'select';
}
// HIDE SUBMENU FUNCTIONS
function unsetActiveSub()
{
var dWrapper = document.getElementById('dWrapper');
if (dWrapper){ dWrapper.className = 'navigation-wrapper'; }
_clearID = setTimeout("beginUnsetActiveSub()",700);
}
function beginUnsetActiveSub()
{
hideAll();
showOne(_current);
}
function showOne(id)
{
var pp = document.getElementById(id);
if (pp) pp.className = "select_sub show";
}
function hideAll()
{
for (var i = 0; i
Then there is...
Dashboard
then my buddy list on the left.. scrolling down more.. my open positions... this bites...