function abrir(url)
{
	location.href = url;
}

function galeria(id, galeria)
{
	switch (galeria)
	{
		case 1:
			var largura = 782, altura = 520;
			break;
		case 2:
			var largura = 758, altura = 645;
	}

	var jG = window.open("/evento/" + id + "/", "enfmania" + id, "top=10px, left=10px, width=" + largura + "px, height=" + altura + "px, scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no");
	jG.focus();
}

function mouseOver(obj, elem)
{
	for (var obj = document.getElementById(obj), item, i = 0; item = obj.getElementsByTagName(elem)[i++];)
	{
		item.onmouseover = function() { this.className += " over"; }
		item.onmouseout = function() { this.className = this.className.replace("over", ""); }
	}
}