/*

VIRZI

HTML + CSS + JQUERY by
http://leofavre.com/

*/





$(document).ready(function(){
	initLayout();
});


function initLayout(){
	$("#logo").css( "top", "-150px" );
	$("#texto").css( "display", "none" );

	$("#logo").animate({
		top: $(document).height()-127
	}, 4000, function() {
		$("#logo").css( "top", "auto" );
		$("#logo").css( "bottom", "122px" );
		$("#texto").fadeIn();
		
		window.setTimeout("showVimeo()", 500);
	});
};

function showVimeo(){
	$("iframe").css("visibility", "visible");
}
