// The JavaScript below was taken from http://i.cdn.turner.com/nba/nba/.e/js/pkg/home/646.js
// I did'nt use the whole js file because it was messing with the "logo rail" making it not show
// up. So I just used the snippet of code that would allow the "accordion" function to work 
function openAccord(n){
   var j=document.getElementsByClassName('nbaAccordHead','nbaAccordion');
   var k=document.getElementsByClassName('nbaAccordBox','nbaAccordion');
   for(var i=0;i<j.length;i++) {
      if(n-1==i){ j[i].className='nbaAccordHead open';k[i].style.display='block'; }
      else{ if(j[i].className!='nbaAccordHead')j[i].className='nbaAccordHead';k[i].style.display='none';}
   }
}

