function init() {
	
	var id = '#dialog';
	
	var maskHeight = $(document).height();
	var maskWidth = $(window).width();

	$('#mask').css({'width':maskWidth,'height':maskHeight});

	$('#mask').fadeIn(1000);	
	$('#mask').fadeTo("slow",0.8);	

	//Get the window height and width
	var winH = $(window).height();
	var winW = $(window).width();
          
	$(id).css('top',  winH/2-$(id).height()/2);
	$(id).css('left', winW/2-$(id).width()/2);

	$(id).fadeIn(2000); 

	$('.window').click(function (e) {
		e.preventDefault();
		
		$('#mask').hide();
		$('.window').hide();
		$("#cadastro_menu").show();
		$("#caminho").val(1);
		$.scrollTo('#cadastro', {duration:500});
	});		
	
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
		$("#cadastro_menu").show();
		$("#caminho").val(1);
		$.scrollTo('#cadastro', {duration:500});
	});
	
}

$(document).ready(init);