function loadNews(){
    var element = $('#news_right');
    element.css('height','25px');
    element.html('<div id="loader">Cargando noticias...</div>');
    element.load('../includes/services/subject/SubjectList.php?type=5',function(){
        element.css('height','');
        if(element.find('ul').length != 0){
            $('#news_widget').innerfade({
                animationtype: 'slide',
                speed: 500,
                timeout: 7000,
                type: 'sequence',
                containerheight: '8em'
                });
        }
        $('#newsRightResult').slideDown('slow');

    });
}

//On Ready attach events
$(document).ready(function(){
    loadNews();
});
