$(document).ready(function(){

    // Верхнее меню
    $(".block_top_left_menu_item_1").mouseover(function(){
          $(this).css("background","url('/images/bg_price_1.png') no-repeat");
          $(this).children().css("color","#EEEEEE");
    });
    $(".block_top_left_menu_item_2").mouseover(function(){
          $(this).css("background","url('/images/bg_price_2.png') no-repeat");
          $(this).children().css("color","#EEEEEE");
    });
    $(".block_top_left_menu_item_3").mouseover(function(){
          $(this).css("background","url('/images/bg_price_3.png') no-repeat");
          $(this).children().css("color","#EEEEEE");
    });
            
            
    $(".block_top_left_menu_item_1").mouseout(function(){
          $(this).css("background",""); 
          $(this).children().css("color","#2E2E2E");
    });
    $(".block_top_left_menu_item_2").mouseout(function(){
          $(this).css("background","");             
          $(this).children().css("color","#2E2E2E");         
    });
    $(".block_top_left_menu_item_3").mouseout(function(){
          $(this).css("background","");        
          $(this).children().css("color","#2E2E2E");
    });
    
    
    // Выбор размера дисков
    $(".left_col_disc_size_list_itemsa").mouseover(function(){
           
          $(this).css("background","url('/images/linklbg.png') no-repeat top center");        
          $(this).css("color","#FFFFFF");
          $(this).css("text-decoration","none");
          $(this).css("font-size","24px");
          $(this).css("line-height","55px");
          $(this).css("font-weight","normal");
          
          $(this).css("width","35px");
          $(this).css("height","45px");
          $(this).css("padding-left","10px");
          $(this).css("padding-top","0px");
          
          $(this).find('a').css("color","#FFFFFF"); 
    });
    
    $(".left_col_disc_size_list_itemsa").mouseout(function(){
          
          $(this).css("background","");        
          $(this).css("color","#000000");
          $(this).css("text-decoration","underline");
          $(this).css("font-size","16px");
          $(this).css("line-height","45px");
          $(this).css("font-weight","bold");
          
          $(this).css("width","35px");
          $(this).css("height","35px");
          $(this).css("padding-left","10px");
          $(this).css("padding-top","10px"); 
          
          $(this).find('a').css("color","#000000"); 
    });
    
        // This initialises carousels on the container elements specified, in this case, carousel1.
    $("#cloud").CloudCarousel(        
        {            
            xPos: 500,
            yPos: 25,
            xRadius: 550,
            mouseWheel: true
        }
    );

    

});

