Add class to all links created by tinyMCE

So I ended up doing a jQuery fix rather than going through tinyMCE. Code as follows:

jQuery(document).ready(function(){
    $("#content a").addClass("link_color");
});