// MouseOver Events
function mgOvr(src,clrOver){
 if (!src.contains(event.fromElement)) {
   src.style.cursor = 'hand';
   src.bgColor = clrOver;
   src.children.tags('A')[0].style.color = '#FFFFFF';
 }
}

// MouseOut Events
function mgOut(src,clrIn) {
 if (!src.contains(event.toElement)) {
   src.style.cursor = 'default';
   src.bgColor = clrIn;
   src.children.tags('A')[0].style.color = '#000000';
 }
}

// Load
function loadInit() { top.defaultStatus = "All Things CopyRight by RedEye Online Gaming CLAN";
}
