$(document).ready(function()
{
var i = 0;
$('#post-diario img').clone().appendTo($('#trabajos.div.bloque'));
$('#post-diario img').each(function()
{
var me = this;
$(this).hide()
var j = i;
setTimeout(function()
{
$(me).fadeIn(1000);
}, i)
i += 100
});

});


$(function(){
	
	$('#fadeInVenezuela').hide().fadeIn(1000).load('despedida.php');
$('#close').click(function(){
	$('#content-venezuela').fadeOut(1000)
		});
	});

