<!-- Begin
// This is the DIV toggle script
// MAKE SURE that the referenced DIV style contains either 'display: block;' (on) or 'display: none;' (off)
function toggle_visibility(id) {
var e = document.getElementById(id);
if (e.style.display == 'none')
e.style.display = 'block';
else
	e.style.display = 'none';
}
// End -->


<!-- Begin
// This is the weekly edition DIV script
// Works in all current browsers
// Copywrite 2005 Flex360 and Arkansas Business
var w3c = document.getElementById ? true : false;
var iex = document.all ? true : false;
var ns4 = document.layers ? true : false;

var intnumofmenuitems=5;
var layerRef, styleSwitch, closeBracket;

if(w3c) {
	layerRef="document.getElementById(";
	styleSwitch=").style";	
	closeBracket=")";
} else if(ns4) {
	layerRef="document.layers[";
	styleSwitch="]";
	closeBracket="]";
} else if(iex) {
	layerRef="document.all[";
	styleSwitch="].style";	
	closeBracket="]";
}
                
        function tabber(layerName){
        		showLayer(layerName);
        }
        
        function hideLayer(layerName){
                eval(layerRef+'"'+layerName+'"'+styleSwitch+'.visibility="hidden"');
                eval(layerRef+'"'+layerName+'tab"'+closeBracket+'.className="tabInactive"');
                eval(layerRef+'"'+layerName+'tabB"'+closeBracket+'.className=""');
                removeothermenus(layerName);
        }       

        function showLayer(layerName){
                eval(layerRef+'"'+layerName+'"'+styleSwitch+'.visibility="visible"');
                eval(layerRef+'"'+layerName+'tab"'+closeBracket+'.className="tabActive"');
                eval(layerRef+'"'+layerName+'tabB"'+closeBracket+'.className="tabActive"');
                removeothermenus(layerName);
        }
        
        function removeothermenus(layerName){
                intmenunumber=intnumofmenuitems;                
                while (intmenunumber>0){
                intcountdown="weekly"+intmenunumber;
									if (intcountdown!=layerName){
										eval(layerRef+'"'+intcountdown+'"'+styleSwitch+'.visibility="hidden"');
										eval(layerRef+'"'+intcountdown+'tab"'+closeBracket+'.className="tabInactive"');
										eval(layerRef+'"'+intcountdown+'tabB"'+closeBracket+'.className=""');
									}
                intmenunumber-=1;
                intcountdown="weekly"+intmenunumber;
                }
        }
//  End -->

<!-- Begin
// This is the calendar DIV script
// Works in all current browsers
// Copywrite 2005 Flex360 and Arkansas Business

				var intnumofmenuitemsC=7;
                
        function calTabber(layerNameC){
        		showLayerC(layerNameC);
        }
        
        function hideLayerC(layerNameC){
                eval(layerRef+'"'+layerNameC+'"'+styleSwitch+'.visibility="hidden"');
                eval(layerRef+'"'+layerNameC+'tab"'+closeBracket+'.className="calInactive"');
                eval(layerRef+'"'+layerNameC+'tabB"'+closeBracket+'.className=""');
                removeothermenusC(layerNameC);
        }       

        function showLayerC(layerNameC){
                eval(layerRef+'"'+layerNameC+'"'+styleSwitch+'.visibility="visible"');
                eval(layerRef+'"'+layerNameC+'tab"'+closeBracket+'.className="calActive"');
                eval(layerRef+'"'+layerNameC+'tabB"'+closeBracket+'.className="calActive"');
                removeothermenusC(layerNameC);
        }
        
        function removeothermenusC(layerNameC){
                intmenunumberC=intnumofmenuitemsC;                
                while (intmenunumberC>0){
                intcountdownC="calendar"+intmenunumberC;
									if (intcountdownC!=layerNameC){
										eval(layerRef+'"'+intcountdownC+'"'+styleSwitch+'.visibility="hidden"');
										eval(layerRef+'"'+intcountdownC+'tab"'+closeBracket+'.className="calInactive"');
										eval(layerRef+'"'+intcountdownC+'tabB"'+closeBracket+'.className=""');
									}
                intmenunumberC-=1;
                intcountdownC="calendar"+intmenunumberC;
                }
        }
//  End -->


<!-- Begin

//This is the new window script
function OpenWin(theURL,winName,features) 
    {window.open(theURL,winName,features);}
    
//This removes the link border on images
function RemoveDot()
{
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}
if (document.all)
{
document.onmousedown = RemoveDot;
}
file:

//  End -->

<!-- Begin
//This is the menu fade-in fade-out script
menufadeObjects = new Object();
menufadeTimers = new Object();

function menufade(object, destOp, loopdelay, changepercentage){
if (!document.all)
return
    if (object != "[object]"){  //do this so I can take a string too
        setTimeout("menufade("+object+","+destOp+","+loopdelay+","+changepercentage+")",0);
        return;
    }
        
    clearTimeout(menufadeTimers[object.sourceIndex]);
    
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
        direction = -1;
    }
    changepercentage=Math.min(direction*diff,changepercentage);
    object.filters.alpha.opacity+=direction*changepercentage;

    if (object.filters.alpha.opacity != destOp){
        menufadeObjects[object.sourceIndex]=object;
        menufadeTimers[object.sourceIndex]=setTimeout("menufade(menufadeObjects["+object.sourceIndex+"],"+destOp+","+loopdelay+","+changepercentage+")",loopdelay);
    }
}
// End -->
