var HomePageMiniBlock = {};

HomePageMiniBlock.HoverElement = function(UniqueID, DescrColor, DescrColor2, TitleBgr, TitleBgr2){
    TitleContainer = document.getElementById('TitleContainer' + UniqueID);
    DescrContainer = document.getElementById('DescriptionContainer' + UniqueID);
    Container = document.getElementById('HomePageMiniBlock' + UniqueID);
    

   Selected = Container.getAttribute('Selected');
   
   if(Selected == null){
        Container.setAttribute('Selected', '1', 0);
        Selected = Container.getAttribute('Selected');
   }
 
    if(Selected == '1'){
        TitleContainer.style.background = 'url('+ TitleBgr2 +') no-repeat';
        DescrContainer.style.backgroundColor = DescrColor2;
        Container.setAttribute('Selected', '0', 0);
    }else{
        TitleContainer.style.background = 'url('+ TitleBgr +') no-repeat';
        DescrContainer.style.backgroundColor = DescrColor;
        Container.setAttribute('Selected', '1', 0);
    }
    
}
