function RegisterNamespaces(){
for(var i=0;i<arguments.length;i++){
var p=arguments[i].split("."),w=window;
for(var j=0;j<p.length;j++){
if(!w[p[j]]){
w[p[j]]=new Object();
}
w=w[p[j]];
}
}
}
RegisterNamespaces("Inpl.RollOver");
Inpl.RollOver=new function(){
this.init=function(id,el){
el=el||"LI";
var _6=$(id).getElementsByTagName(el);
for(var i=0;i<_6.length;i++){
_6[i].onmouseover=new Function("Inpl.RollOver.rollOver(this);");
_6[i].onmouseout=new Function("Inpl.RollOver.rollOut(this);");
}
};
this.rollOver=function(o){
if(-1==o.className.indexOf("selected")){
o.className+=" selected";
}
};
this.rollOut=function(o){
o.className=o.className.replace("selected","");
};
};


