/* Loads "Acerca de Trimix" htmls into div */
$(document).ready(function(){
    $('.main_left_acerca ul').find('a').each(function(){
        $(this).click(function(e){
            var url = $(this).attr('title');
            $('.main_left_acerca ul').find('a').removeAttr('class');
            $('.main_right').empty().load(url);
            $(this).attr('class', 'sel');
            e.preventDefault();
        });
    });
});

/* Loads "Business Intelligence" htmls into div */
$(document).ready(function(){
    $('.main_left_business ul').find('a').each(function(){
        $(this).click(function(e){
            var url = $(this).attr('title');
            $('.main_left_business ul').find('a').removeAttr('class');
            $('.main_right').empty().load(url);
            $(this).attr('class', 'sel');
            e.preventDefault();
        });
    });
});
