$(document).ready(function(){
    $('#tv_name_1').show();
    $('#tv_monitor_1').show();
    $('#tv_program_1').addClass('active');
    $('.tv_program_li').bind('mouseenter', function(){
        $('.tv_name').hide();
        $('.monitor').hide();
        $('#tv_name_'+this.getAttribute('identificator')).show();
        $('#tv_monitor_'+this.getAttribute('identificator')).show();
        $('.tv_program_li').removeClass('active');
        $(this).addClass('active');
               
    }); 
});
