/*!
 * jQuery fadeTo workaround for IE to avoid it dropping Cleartype rendering
 * Date: 20Feb10
 */
(function($) {
	$.fn.fadeToEx = function(speed, to, callback) {
		$(this).fadeTo(speed, to, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
})(jQuery);

