// JavaScript Document
jQuery.fn.stroke = function() {
  return this.each(function(){
    
	  var content= $(this).html();
	  
	  //$(this).html("");
	  for (j=2;j<=2	;j++){
		$(this).prepend('<span class="stroke'+j+'">'+content+'</span>');
	  }
	 $(this).append('<span class="rawtext">'+content+'</span>');
	
  });
};

