Guest User

Untitled

a guest
Jul 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. function HighlightCurrentTab()
  2. {
  3. if(GetTopLevelDepartment() > 0 )
  4. {
  5. var eleId = 'dept_' + GetTopLevelDepartment();
  6. if(typeof(eleId) != "undefined" && eleId != null)
  7. {
  8. var liId = document.getElementById(eleId);
  9. if(typeof(liId) != "undefined" && liId != null)
  10. {
  11. var aId = liId.getElementsByTagName('a');
  12. if(typeof(aId) != "undefined" && aId != null)
  13. {
  14. aId[0].style.backgroundPosition = "0 top";
  15. }
  16. }
  17. }
  18. //document.getElementById(eleId).childNodes[1].style.backgroundImage = "url('//secureimages.redcatsusa.com/images/site_images/womanwithin/dept_" + GetSubCookieValue('Department','TopLevelDepartment') + "_on.jpg')"
  19. }
  20. }
Add Comment
Please, Sign In to add comment