$(document).ready(function(){


$("a[href*='ravelry.com/projects/']:not(#ravelry-progress-bars a)").addClass('rav_project_link');

$("a[href*='ravelry.com/projects/']:not(#ravelry-progress-bars a)").each(function (i) {
        var link_text = $(this).text();
	$(this).before(link_text );
	$(this).text("See this project on Ravelry");
      });


  });

