$j(document).ready(function() {

    $j('#newsBox .articles li a').cluetip({
        sticky: true,
        cluetipClass: 'rounded',
        //width: '335px',
        //height: 'auto',
        showTitle: true,
        arrows: true,
        dropShadow: false,
        ajaxCache: true,
        fx: {
            open: 'show'
            //openSpeed: 'fast'    
        }
    });
    $j('#newsBox .articles li a, #cluetip-outer, #cluetip-arrows').mouseout(onmouseout_cluetip);
    $j('#newsBox .articles li a, #cluetip-outer, #cluetip-arrows').mouseover(onmouseover_cluetip);


});

