/**
 * @author jorge.silveira
 */
$().ready(function(){
	var height 	= $().attr('height');
	var width 	= $().attr('width');
	$('#footer').after('<div class="dark" id="disableScreen" style="width:'+width+'px; height:'+height+'px;"></div>');
	$('#disableScreen').click(function(){
		enableScreen();
	});
	var left = parseInt(width/2-150);
	var top = parseInt(height/4-100);
	$('#footer').before('<div id="cooming_soon" style="position:fixed; left:'+left+'px; top:'+top+'px; "><p>Proximamente</p></div>');
	
});

function enableScreen() {
	$('#cooming_soon').fadeOut('slow');
	$('#disableScreen').fadeOut('slow');
}

function disableScreen() {
	$('#disableScreen').fadeIn('slow');
	$('#cooming_soon').fadeIn('slow');
}

function proximamente() {
	disableScreen();
}

