jQuery.fn.drop = function(options) {   
  var defaults = {
   originalClass: "trigger",
   newClass: "msieFix"
  };
  
  var options = $.extend(defaults, options);
   
	return $(this).each(function() {

		if (jQuery.browser.msie && parseInt(jQuery.browser.version, 10) < 7 && parseInt(jQuery.browser.version, 10) > 4) {
			if ($(this).attr("id"))
			{
				$(this).addClass(options.originalClass);
				$(this).mouseover(function(){
						var $this = $(this);
		
						$this.removeClass(options.originalClass);
						$this.addClass(options.newClass);
				}); 
				
				
				
				$(this).mouseout(function(){
						var $this = $(this);
						$this.removeClass(options.newClass);
						$this.addClass(options.originalClass);
		
				});
			}
		}
	});
};


//jQuery.fn.drop = function(options) {   
//  var defaults = {
//   length: 300,
//   minTrail: 20,
//   moreText: "more",
//   lessText: "less",
//   ellipsisText: "..."
//  };
//  
//  var options = $.extend(defaults, options);
//   
//	return $(this).each(function() {
//
//		
//			if ($(this).attr("id"))
//			{
//				$(this).addClass("trigger");
//				$(this).mouseover(function(){
//						var $this = $(this);
//		
//						$this.removeClass('trigger');
//						$this.addClass('msieFix');
//				}); 
//				
//				
//				
//				$(this).mouseout(function(){
//						var $this = $(this);
//						$this.removeClass('msieFix');
//						$this.addClass('trigger');
//		
//				});
//			}
//			
//		});
//};