var hubovercount=0;
var huboutcount=0;

function hoverhub(tohubtext){
 t=document.getElementById('hubtextcontent');
 // w=document.getElementById('hubtextwelcome');
 if(tohubtext!=''){
  hubovercount++;
  t.innerHTML=tohubtext;
  t.style.display='block';
  t.style.visibility='visible';
  // w.style.display='none';
  // w.style.visibility='hidden';
 }else{
  huboutcount++;
  if(hubovercount==huboutcount){
   t.style.display='none';
   t.style.visibility='hidden';
   // w.style.visibility='visible';
   // w.style.display='block';
  }
 }
}

function hubgo(localePath){
 window.location = localePath;
 //window.location = "http://".concat(document.domain,"/view",localePath,"home");
 //alert(document.domain.concat("/clubvaio",localePath,"home.jsp"));
 return false;
}