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.Hovers");
Inpl.Hovers=new function(){
var _4=this,n="Inpl.Hovers.",b=[];
this.Init=function(id,on,_7){
_7=_7||"A";
on=on||"-on";
var i,m,sf,sn,p,o=$(id).getElementsByTagName(_7),l=document.location;
for(i=0;i<o.length;i++){
m=o[i].getElementsByTagName("IMG");
if(m[0]&&-1==m[0].src.indexOf(on)){
sf=m[0].src.replace(l.protocol+"//"+l.host,"");
p=sf.indexOf(".");
sn=sf.substr(0,p)+on+sf.substr(p);
o[i].onmouseover=new Function(n+"On("+i+",\""+sn+"\",\""+_7+"\",\""+id+"\")");
o[i].onmouseout=new Function(n+"Off("+i+",\""+sf+"\",\""+_7+"\",\""+id+"\")");
j=b.length;
b[j]=new Image();
b[j].src=sn;
}
}
};
this.On=function(i,s,_b,id){
$(id).getElementsByTagName(_b)[i].getElementsByTagName("IMG")[0].src=s;
};
this.Off=function(i,s,_f,id){
$(id).getElementsByTagName(_f)[i].getElementsByTagName("IMG")[0].src=s;
};
};


