/**
 * System Javascript Object
 * @author Wolker Wegner <wolker.wegner@sizeof.com.br>
 */

// ***********  ajustes layout  ************** //
function LoadLayout() {
	if(controllerName == 'index'){
		document.getElementById("area_trabalho").style.backgroundImage = 'url(/public/images/fundo_site.jpg)';
		document.getElementById("area_trabalho").style.height = '706px';
		document.getElementById("bebida").style.display = 'none';
		document.getElementById("bebida2").style.display = 'none';
		document.getElementById("botoes").style.display = 'none';
	}
	else if(actionName == 'coqueteis'){
		document.getElementById("area_trabalho").style.background = 'url(/public/images/fundo_site3.jpg) no-repeat';
		document.getElementById("area_trabalho").style.height = '1570px';
		document.getElementById("bebida").style.display = 'block';
		document.getElementById("bebida2").style.display = 'none';
		document.getElementById("botoes").style.display = 'block';
		document.getElementById("botoes").style.marginTop = '880px';
	}
	else if(controllerName == 'qualidade'){
		document.getElementById("area_trabalho").style.background = 'url(/public/images/fundo_site2.jpg) no-repeat';
		document.getElementById("area_trabalho").style.height = '849px';
		document.getElementById("bebida").style.display = 'none';
		document.getElementById("bebida2").style.display = 'none';
		document.getElementById("botoes").style.display = 'block';
		document.getElementById("botoes").style.marginTop = '300px';
	}
	else if(actionName == 'aguardente'){
		document.getElementById("area_trabalho").style.background = 'url(/public/images/fundo_site.jpg) no-repeat';
		document.getElementById("area_trabalho").style.height = '706px';
		document.getElementById("bebida").style.display = 'none';
		document.getElementById("bebida2").style.display = 'block';
		document.getElementById("botoes").style.display = 'block';
		document.getElementById("botoes").style.marginTop = '20px';
	}
	else if(controllerName == 'historico'){
		document.getElementById("area_trabalho").style.background = 'url(/public/images/fundo_site2.jpg) no-repeat';
		document.getElementById("area_trabalho").style.height = '849px';
		document.getElementById("bebida").style.display = 'none';
		document.getElementById("bebida2").style.display = 'none';
		document.getElementById("botoes").style.display = 'block';
		document.getElementById("botoes").style.marginTop = '300px';
	}
	else if(actionName == 'agua'){
		document.getElementById("area_trabalho").style.background = 'url(/public/images/fundo_site2.jpg) no-repeat';
		document.getElementById("area_trabalho").style.height = '849px';
		document.getElementById("bebida").style.display = 'none';
		document.getElementById("bebida2").style.display = 'none';
		document.getElementById("botoes").style.display = 'block';
		document.getElementById("botoes").style.marginTop = '300px';
	}
	else {
		document.getElementById("area_trabalho").style.background = 'url(/public/images/fundo_site.jpg) no-repeat';
		document.getElementById("area_trabalho").style.height = '706px';
		document.getElementById("bebida").style.display = 'none';
		document.getElementById("bebida2").style.display = 'none';
		document.getElementById("botoes").style.display = 'block';
		document.getElementById("botoes").style.marginTop = '160px';
	}
}
// =========================================== //