function promo005(){
	var promo005 = document.getElementById("promo005");
	
	if(!promo005)
		return;
	
	var linkregulamento = getElementsByClassName("regulamentobutton", promo005);
	linkregulamento = linkregulamento[0];
	
	linkregulamento.setAttribute("href", "#caixaregulamento");
	linkregulamento.setAttribute("target", "_self");
	linkregulamento.onclick = function(){
		regulamento.style.display = "";
		
		return true;
	}
	
	var regulamento = getElementsByClassName("caixaregulamento", promo005);
	regulamento = regulamento[0];
	regulamento.style.display = "none";
	
	
	var fechar = getElementsByClassName("fecharbutton", promo005);
	fechar = fechar[0];
	fechar.onclick = function(){
		regulamento.style.display = "none";
	}	
}