// JavaScript For ManySmileys
function redirectToHome() {
  window.location = "/";
}

function bgcolorchange(id, mouse) {
  if (mouse == 'over') {
    document.getElementById(id).style.backgroundColor = '#FE9A4F';
    var anchor = document.getElementById(id).getElementsByTagName('a');
    anchor[0].style.fontWeight = "bold";
  }
  else {
    document.getElementById(id).style.backgroundColor = 'transparent';
    var anchor = document.getElementById(id).getElementsByTagName('a');
    anchor[0].style.fontWeight = "normal";
  }
}
