﻿/// <reference path="jquery-1.3.2-vsdoc.js"/>

; (function($) {
	$.fn.addCSS = function(css) {
		var style = $('<style type="text/css"></style>').appendTo($(this)).get(0);
		if (style.styleSheet) {  // IE;
			style.styleSheet.cssText = css;
		} else {  // W3C;
			var cssText = document.createTextNode(css);
			style.appendChild(cssText);
		}
	}
})(jQuery);  // plugin code ends;