jQuery(document).ready(function(){
	
	jQuery("ul").each(function(){
		jQuery(this).children("li:first").addClass('first');
	});
	jQuery("ul").each(function(){
		jQuery(this).children("li:last").addClass('last');
	});
	
	jQuery("ol").each(function(){
		jQuery(this).children("li:first").addClass('first');
	});
	jQuery("ol").each(function(){
		jQuery(this).children("li:last").addClass('last');
	});
	
		$('#toogle-video').toggle(function() {
			
 						  $("#video").slideToggle(1000);
						  $("#video-container").slideToggle(1000);
                          $("#close-text").text('VER VÍDEO');
						  setTimeout(function(){ $("#vimeo").attr('src', ""); }, 1000);
						  
 
                          },function () {
							  
 						  $("#video").slideToggle(1000);
						  $("#video-container").slideToggle(1000);
                          $("#close-text").text('CERRAR');
						  $("#vimeo").attr('src', "http://player.vimeo.com/video/25399136?title=0&amp;byline=0&amp;portrait=0&amp;color=790000");
 
                    	}); 
						
					
	$().UItoTop({ easingType: 'easeOutQuart' });
	
});
