$(document).ready(function() {
    $('#calendar .switcher').mouseover(function(){
        var zIndex = $(this).find('.item').css('z-index');
        $(this).find('.item_hover').css('z-index', zIndex-0+5);
    });

    $('#calendar .switcher').mouseout(function(){
        var zIndex = $(this).find('.item').css('z-index');
        $(this).find('.item_hover').css('z-index', zIndex-5);
    });
});
