/*
 * IEinlineIcons 0.1	http://jlix.net/extensions/jquery/IEinlineIcons/0.1
 *
 * Copyright (c) 2009 Sander Aarts	(jlix.net)
 * Dual licensed under the MIT (http://jlix.net/MIT.txt)
 * and GPL (http://jlix.net/GPL.txt) licenses.
 *
 * Requires jQuery to work	(jquery.com). Tested with version 1.2.6
 *
 * 2008-11-04
 */
(function($) {
	$.fn.extend( {
		IEinlineIcons: function() { // v0.1
			// Appends a span with a non-breaking space to the matched elements (in IE) as a placeholder for an icon
			// CSS:		.jsIEfix (on matched elements)
			//				.jsInlineIcon (on appended span)
			return !$.browser.msie ? this : this.append('<span class="jsInlineIcon">&nbsp;</span>').addClass("jsIEfix");
		}
	} );
} )(jQuery);<!--gen-->
