$.fn.feature = function(options) {  

	var defaults = {  
		growBy: 240
	};  
 
	var options = $.extend(defaults, options);  
  
	return this.each(function() {  
		var element = $(this);
		var slide = $(this).children(".slide");
		var elementWidth = element.width();
		var slideWidth = elementWidth / slide.length;
		var slideWidth = Math.ceil(slideWidth) - 1;
		var bigWidth = slideWidth + options.growBy;
		var smallWidth = slideWidth - (options.growBy / (slide.length - 1));
		slide.width(slideWidth);
		slide.mouseover(function(){
			slide.not(this).stop().animate({width: smallWidth});		
			$(this).stop().animate({width: bigWidth});	
			return false;
		});
	});  
};


