/*
JavaScript Document
Set the class of the active menu item
developed for Launch Pad for Adobe Captivate by KCWebPlaza
http://www.kcwebplaza.com/captivate
version 1.02
*/

function selected(obj){
var lilist = document.getElementById('menu');
var alist = lilist.getElementsByTagName('a');
for (i=0; i<alist.length; i++ )
{
alist[i].className="";
}
obj.className="active";
}