$(function(){
    $('.right_movie_list').mouseover(function(){$(this).children('.title').children().css({color:'#00ccff', textDecoration:'underline'})});
    $('.right_movie_list').mouseout(function(){$(this).children('.title').children().css({color:'#fff', textDecoration:'none'})});

    $('.left_movie_list').mouseover(function(){$(this).children('.title').children().css({color:'#00ccff', textDecoration:'underline'})});
    $('.left_movie_list').mouseout(function(){$(this).children('.title').children().css({color:'#fff', textDecoration:'none'})});
});