(function($){  
	$.fn.fixsifr = function() {  

		return this.each(function() {
			var titles = $('h3#s1 span').html();
			$('h3#s1 span').replaceWith('');
			var titlen = $('h3#s1').html();
			
			$(this).replaceWith('<h3>' + titlen + '</h3><h3 class="s2">' + titles + '</h3>');


		});

	};

})(jQuery);