function fade (alfa) {
	$(document).ready(function(){
		$(alfa).fadeTo(0, 0.7);
		$(alfa).hover(function(){
			$(this).fadeTo("fast", 1.0);
		},function(){
			$(this).fadeTo("fast", 0.7);
		});
	});
};


function toggleDiv (alfa){
	$(antes).hide("fast",function(){
		$(alfa).show("fast",function(){
			antes = alfa
		});
	});
	if (antes == alfa){
			antes=""
	} else {
	}
};

		   
function empieza1(elemento){
	$(elemento).hide();
	var i = 0
	var n = $(elemento).length;
	function showbox() {
		if(i <= n){ 	
			$(elemento).eq(i).fadeIn(300, function(){ 
				i++; 
				showbox(); 
			});	  
		}
	}
	showbox();
}