var prodCollection = {
  
     HoverIn: function(obj){
     
         obj.style.background="#6F0000";
         obj.style.color="#FFF";

     },

     HoverOut: function (obj){

                   obj.style.background="#FFF";
         obj.style.color="#000";
     },

     toDetail: function(dataSource){

         window.location="/"+dataSource+".html";

     }


  };

