// JavaScript Document

function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
}

$(document).ready(function(){
	$('.nav2 a.menulink').slidePanel({
		role: 'toggle-accordion',
		speed: 'normal', // normal is the default. fast and slow are other options,
		target: function(panel){ return panel.parent().parent().find("div"); }
	});
	
	$('div.vmc_expand').css('display', 'none');
	$('div.kx_expand').css('display', 'none');
});