var isIE6 = (navigator.appName.indexOf('Microsoft') > -1) && (navigator.appVersion.indexOf('7.0') != 22) ? 1 : 0;

/*jQuery().ready(function(){
		jQuery('#sideBar').Accordion({ 
		    header: '.toggle', 
		    alwaysOpen: true, 
		    navigation: false,
		    active: '.selected', 
		    selectedClass: "active"
		});
		
		jQuery('.toggle').click(function() {
		    var currentDOM = document.getElementById(currentTab);
		
		    this.parentNode.firstChild.className = "categoryLink on";
		    if (currentDOM) currentDOM.firstChild.className = "categoryLink";
		    if (!isIE6) {
		        this.className="selected toggle transp";
       		    if (currentDOM) currentDOM.childNodes[1].className = "toggle transp"
		    }
		    else {
		        this.style.filter = this.style.filter.replace('expand','collapse');
		        if (currentDOM) currentDOM.firstChild.nextSibling.style.filter = currentDOM.firstChild.nextSibling.style.filter.replace('collapse','expand');
		    }
		    
		    currentTab = this.parentNode.firstChild.innerHTML.replace(" ","")+"_catLink";
		});
	});*/