// ==UserScript==
// @name		Fix Blogger em and strong behavior
// @namespace		http://rhyley.port5.com/gm/
// @description		Makes blogger use em and strong when using the WYSIGIG post interface, instead of those asinine SPANs.
// @include		http://www.blogger.com/post-*
// @include		http://blogger.com/post-*
// ==/UserScript==

/** licenced under a Creative Commons Attribution-NonCommercial-ShareAlike 2.0
 ** http://creativecommons.org/licenses/by-nc-sa/2.0/
 **
 ** Code by:
 ** Jason Rhyley - jason AT rhyley DOT org - www.rhyley.org
 **
 ** This is a greasemonkey script, intended for use with the Firefox extension Greasemonkey.
 ** More info: http://greasemonkey.mozdev.org/
 **/

Textbar.Bold = function()
{
	this.wrapSelection('<strong>','</strong>');
}

Textbar.Italic = function()
{
	this.wrapSelection('<em>','</em>');
}