$(document).ready(function() {
	var strikeButton = $("<input/>").attr("type", "button").attr("class", "button2").attr("value", "Przekreślenie").attr("title", "Przekreślenie");

  strikeButton.click(function() {
    bbfontstyle("[strike]", "[/strike]");
	});
	
	$('#format-buttons').append(" ");
	
	$('#format-buttons').append(strikeButton);
});
