function StarCursor(){
var _1=15;
var _2=-8;
var _3;
var x,y;
var id="f2f_StarCursor";
this.showCursor=function(){
try{
var _4=document.getElementById(id);
if(!_4){
var e=document.createElement("div");
e.id=id;
e.innerHTML="<img src=\""+f2fconstants.STATIC_GLOBAL_URI+"images/loading.gif\" width=\"32\" height=\"32\">";
e.style.display="none";
e.style.position="absolute";
e.style.width="32";
e.style.height="32";
document.getElementsByTagName("body")[0].appendChild(e);
}
document.onmousemove=_5;
}
catch(e){
}
};
this.hideCursor=function(){
try{
document.onmousemove=null;
document.getElementById(id).style.display="none";
}
catch(e){
}
};
function _5(e){
try{
if(!e){
e=window.event;
}
var _6=document.getElementById(id);
if(_6){
x=(e.pageX?e.pageX:(e.clientX+(document.documentElement.scrollLeft?document.documentElement.scrollLeft:document.body.scrollLeft)))+_1;
y=(e.pageY?e.pageY:(e.clientY+(document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop)))+_2;
_3=_6.style;
_3.left=x+"px";
_3.top=y+"px";
if(_3.display=="none"){
_3.display="";
}
}
}
catch(ex){
}
};
function _7(){
preloadImages(f2fconstants.STATIC_GLOBAL_URI+"images/loading.gif");
};
_7();
};

