/* 
=========================================================================================== CREDITS
Script Created for:   JPL Productions
Script Created by:    Larry Daughenbaugh [ based off of scripts at Dynamic Drive ]
=========================================================================================== SHOW HIDDEN DIVS
*/
function expandthis(divName,currentDiv,showDiv,showDivContent,count) {			
    document.getElementById(showDivContent).style.display = "";
    document.getElementById(currentDiv).className = "active-tab";

    var i = 0;
    while (i < count) 	{
        if(document.getElementById(showDiv + i) != document.getElementById(showDivContent)) {
            document.getElementById(showDiv + i).style.display = "none";
            document.getElementById(divName + i).className = "inactive-tab";
        }
        i++;
    }
}
/* =========================================================================================== PRELOAD IMAGES */
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
