/*  TV List  Author: Khanh Cao*/jQuery(document).ready(function(){  jQuery(".rating_stars > img").attr("src", "/Portals/0/images/star.png");  jQuery("#divRatingForm img").attr("src", "/Portals/0/images/star_hollow.png");    jQuery(".tv_title > h3 > a").ellipsis();  jQuery(".tv_title > a > h4").ellipsis();  jQuery(".image_pane").mouseenter(    function (event) {            jQuery(this).children(".rating_pane").stop(true, true).animate({queue:false, opacity: "0.35"}, 300, "swing");      jQuery(this).children(".rating_stars").stop(true, true).animate({queue:false, opacity: "0.99"}, 300, "swing");            return false;    }).mouseleave(    function(event) {      jQuery(this).children(".rating_pane").stop(true, true).animate({queue:false, opacity: "0.0"}, 300, "swing");      jQuery(this).children(".rating_stars").stop(true, true).animate({queue:false, opacity: "0.0"}, 300, "swing");            return false;    });  });
