﻿$(document).ready(function() {

    $("#top-ten").tabs();
    $('.itemCarousel').jcarousel({ scroll: 1 });

    $(".hot-issue")
    .mouseover(function() {
        //var child = $(this).children(".jcarousel-next"); //.show("slow");
        //alert($(child).html());
        //$(".jcarousel-prev").show("slow");
        $(this).css("background", "#86b612");
    })
    .mouseout(function() {
        //$(".jcarousel-next").hide("slow");
        //$(".jcarousel-prev").hide("slow");
        $(this).css("background", "#646464");
    });

});
