$(document).ready(function(){
  $("#STAR_home_featured #fin_topstory .fin_headlinenews_target").hover(function(){
  	$("#STAR_home_featured #fin_topstory .fin_headlinenews_target .fin_cover").stop().animate({top:'0px'},{queue:false,duration:160});
  }, function() {
  	$("#STAR_home_featured #fin_topstory .fin_headlinenews_target .fin_cover").stop().animate({top:'-80px'},{queue:false,duration:160});
  });
  $(".fin_thumblist .fin_headlinenews_target").hover(function(){
    $("#STAR_home_featured #fin_topstory .fin_headlinenews_target").html($(this).html())
    $(".fin_thumblist .fin_headlinenews_target a").removeClass("fin_current");    
    $(this).find("a").addClass("fin_current");
  }, function() {
  });
});

