$("document").ready(function(){
    $('#content span').each(function(){
        $(this).css({'font-family': null, 'font-size': null});
        console.log('here');
    });
});

