﻿  function GetHotKeyword()
  {
     var url = document.URL;
     var current;
     var arrHot = new Array("hotbeauty","hotfashion","hotbag","hotjewelry","hotfullhouse","hotdefault")
     
     if (url.toUpperCase().indexOf("BEAUTY")!=-1)
     {
        current = "hotbeauty";
     }
     else if (url.toUpperCase().indexOf("FASHION")!=-1)
     {
        current = "hotfashion";
     }
     else if (url.toUpperCase().indexOf("BAG")!=-1)
     {
        current = "hotbag";
     }
     else if (url.toUpperCase().indexOf("JEWELRY")!=-1)
     {
        current = "hotjewelry";
     }
     else if (url.toUpperCase().indexOf("FULLHOUSE")!=-1)
     {
        current = "hotfullhouse";
     }
     else 
     {
        current = "hotdefault";
     }     
     for(var i=0;i<6;i++)
     {
        document.getElementById(arrHot[i]).style.display = "none";
     }
     document.getElementById(current).style.display = "";
  }
  
  GetHotKeyword();
  