(function($){
	$.fn.op = function(options){
		var o = $.extend({
			speed: 100,
			opacity: 0.6
		}, options)
		
		$(this).each(function(){
			if($.browser.msie) {
				$(this).hover(
				function(){
					$(this).fadeTo(o.speed, o.opacity);
				}, function(){
					$(this).fadeTo(o.speed, 1.0, function(){ this.style.removeAttribute("filter"); });
				});
			} else {
				$(this).hover(
				function(){
					$(this).fadeTo(o.speed, o.opacity);
				}, function(){
					$(this).fadeTo(o.speed, 1.0);
				});
			}
		});
		return this;
	};
})(jQuery);
