function over (obj) {
 //obj.className = 'td_hover';
}
function out (obj) {
 //obj.className = 'td_all';
}

$(document).ready(function () {
$('.video_img').hover( function() {          
        $(this).find('.video_img_hover').hide();
        $(this).find('.video_img_hover_inv').show();
    },
    function() {
        $(this).find('.video_img_hover').show();
        $(this).find('.video_img_hover_inv').hide();
    }
    )
})
