$.fn.fadeMenu = function(options) {
 
	defaultOptions = {
		liMax : 5
	}    
	options = jQuery.extend(defaultOptions , options);
 
  this.each(function(){
    
    var root = this, zIndex = 1000;
	var imgs = $(root).find('li').length;
	
	function doThis() {
		if (i >= imgs) {
			clearInterval(int);
		}

		$(root).find('li:hidden').eq(0).slideDown(250);
		i++;
	}
    
	$(function() {
		$(root).find('li').hide();
	});
	var i = 1;//Inicializa
	var int = 1;//Repara el error de IE de MS
	var link = $(root).find('.base').attr('href');
	
	$(window).bind("load", function() {
		var int = setInterval(function(){
			if (i <= options.liMax) {
				doThis(i);
			}
		},150);
		if (imgs > options.liMax) {
			$(root).find('ul').append('<li style="display:inline;"><b><a class="animatedMenu" href="' + link + '" title="Ver más">+ver más</a></b></li>');
		}
	});
  });
  
};
