// JavaScript Document

function slideNext(idName) {
	var myThis = document.getElementById(idName);
	
	if ($(myThis).next().is(":visible")) {
		$(myThis).next().slideUp("normal");
	} else {
    	$("div.sideSubItem").slideUp("normal");
		$(myThis).next().slideDown("normal");
	}
}
  
function showNext(idName) {
	var myThis = document.getElementById(idName);
	$(myThis).next().show();
}
  
function setupSidebar() {
	var curUrl = document.location.href;
	curUrl = curUrl.toLowerCase();
	//alert(curUrl);
	
	if (curUrl.indexOf("/products/other/activesignature") > -1) {
		showNext("SI1");
	} else if (curUrl.indexOf("/products/applications/autotextme") > -1) {
		showNext("SI2");
	} else if (curUrl.indexOf("/products/applications/cudawatch") > -1) {
		showNext("SI3");		
	} else if (curUrl.indexOf("/products/applications/diskalertme") > -1) {
		showNext("SI4");
	}
}