regulamento = {
	showRegulamentoCadastre : function () {	
		document.getElementById('regulamento').style.display = 'block';
		document.getElementById('rolagemRegulamento').style.display = 'none';
		if(document.getElementById('DropCidade')){
			document.getElementById('DropCidade').style.display = 'none';
			document.getElementById('DropBares').style.display = 'none';
		}
		InitialiseScrollableArea('divContainerRegulamento','divContentRegulamento');
	},

	showRegulamentoDicas : function () {	
		document.getElementById('regulamentoDicas').style.display = 'block';
		InitialiseScrollableArea('divContainerRegulamentoDicas','divContentRegulamentoDicas');
	},

	showRegulamento : function () {	
		document.getElementById('regulamento').style.display = 'block';
		InitialiseScrollableArea('divContainerRegulamento','divContentRegulamento');
		if(document.getElementById('dropEstado')){
			document.getElementById('dropEstado').style.display = 'none';
			document.getElementById('estadoCivil').style.display = 'none';
			document.getElementById('operadora').style.display = 'none';
			document.getElementById('barFrequencia').style.display = 'none';
		}
		if(document.getElementById('dropCidade')){
			document.getElementById('dropCidade').style.display = 'none';
			document.getElementById('DropBares').style.display = 'none';
		}
	},

	hideRegulamentoCadastre : function () {
		document.getElementById('regulamento').style.display = 'none';
		document.getElementById('rolagem').style.display = '';
		document.getElementById('DropCidade').style.display = '';
		document.getElementById('DropBares').style.display = '';
		InitialiseScrollableArea('divContainer','divContent');
	},

	hideRegulamentoDicas : function () {
		document.getElementById('regulamentoDicas').style.display = 'none';
		document.getElementById('rolagemRegulamentoDicas').style.display = '';
	},

	hideRegulamento : function () {
		document.getElementById('regulamento').style.display = 'none';
		if(document.getElementById('dropEstado')){
			document.getElementById('dropEstado').style.display = '';
			document.getElementById('estadoCivil').style.display = '';
			document.getElementById('operadora').style.display = '';
			document.getElementById('barFrequencia').style.display = '';
		}
		if(document.getElementById('dropCidade')){
			document.getElementById('dropCidade').style.display = '';
			document.getElementById('DropBares').style.display = '';
		}
	}
}