$(document).ready(function() {

  
  if($.browser.msie){
    
     userAgent = $.browser.version;
     userAgent = userAgent.substring(0,userAgent.indexOf('.'));
     if(userAgent < 9){

        $('#wrapper').addClass('ie_wrapper_shadow');

        $('.u_titblock').corner('top 10px');   
     
        $('#rightmenu').corner('top 10px');
        $('#rightmenu').corner('bottom 10px');
          
        $('#system_menu_container').addClass('ieold_system_menu');
        $('#system_menu_container').corner("round 6px")

        $('#system_menu').corner("round 5px"); 
     
        $('.login_container').css('background-color','#efefef');
        $('.login_container').corner("round 10px"); 
        
        $('.cerca_container').css('background-color','#efefef');
        $('.cerca_container').corner("round 10px");    
        
     };
  }

   
  // Hover effect for the header menu
  $(".topmenu_voice").hover(
    function() { 
      $(this).find("a:first").addClass('topmenu_tab');
    }
    ,
    function() {
       $(this).find("a:first").removeClass('topmenu_tab');
    }
  );

  $(".rightmenu_voice").hover(
    function() { 
      $(this).find("a:first").addClass('rightmenu_tab');
      $(this).find("div.s_submenu:first").css("display","block");
    }
    ,
    function() {
       $(this).find("a:first").removeClass('rightmenu_tab');
        $(this).find("div.s_submenu:first").css("display","none");
    }
  );
  
  $('#accedi').click(function() {
     $('.login_container').slideDown('slow', function() {
    // Animation complete.
     });
  });  

  $('#close_riservata').click(function() {
     $('.login_container').slideUp('slow', function() {
    // Animation complete.
     });
  }); 
   
  $('#cerca').click(function() {
     $('.cerca_container').slideDown('slow', function() {
     });
  });  
  
  
  $('#close_cerca').click(function() {
     $('.cerca_container').slideUp('slow', function() {
    // Animation complete.
     });
  }); 
  
   
});

