/*
 ***********************************************
 *                                             *
 *  This is not the Source you`re looking for  *
 *                                             *
 *          Move along. Move along!            *
 *       (Well, yeah, Star Wars rocks)         *
 *                                             *
 ***********************************************
 */

function toggleSubMenu(parent_id) {
	var parent = getObj("main_" + parent_id);
	var obj = getObj("child_" + parent_id);
	
	if(!obj)
		return;
	
	if(parent) {
		parent.setAttribute("class", (obj.style.display == "none") ? "sub_expanded" : "sub_hidden");
		try { parent.blur(); } catch(e) {}
	}
	obj.style.display = (obj.style.display == "none") ? "block" : "none";
}

function getObj(id) {
	var obj = (document.getElementById) ? document.getElementById(id) : document.all[id];
	return obj;
}