function AreaCliente(pAction){
	if(pAction=='Show'){
		$("#BoxAreaCliente").fadeIn('slow');
	}else{
		$("#BoxAreaCliente").fadeOut('slow');
	}
}

function BoxFaleConosco(pAction){

	if(pAction=='Show'){
		$("#BoxFaleConosco").fadeIn('slow');
		$("#BackgroundBlue").fadeIn('slow');

		

	}else{
		$("#BoxFaleConosco").fadeOut('slow');
		$("#BackgroundBlue").fadeOut('slow');
	}
}

function BoxIndique(pAction){
	if(pAction=='Show'){
		$("#BoxIndique").fadeIn('slow');
		$("#BackgroundBlue").fadeIn('slow');
	}else{
		$("#BoxIndique").fadeOut('slow');
		$("#BackgroundBlue").fadeOut('slow');
	}
}

$("#BackgroundBlue").animate({opacity: 0.8}, 1500);