<html>
<head>
	<title>Egon Braun</title>


<script language="JavaScript">
var NN3 = false;
image1= new Image();
image1.src = "produtores.gif";
image1on = new Image();
image1on.src = "produtores_p.gif";

image2= new Image();
image2.src = "filmes.gif";
image2on = new Image();
image2on.src = "filmes_p.gif";

function on3(name)   {
        document[name].src = eval(name + "on.src");
}
function off3(name)  {
        document[name].src = eval(name + ".src");
}
NN3 = true;

function on(name)  {
        if (NN3) on3(name);
}
function off(name)  {
        if (NN3) off3(name);
}
</script>
</head>
<body>

<a href="produtores.html" onMouseOver="on('image1'); return true;" onMouseOut="off('image1'); statusOut(); return true;">
<img src="produtores.gif" border="0" name="image1" ALT="">
</a>
<br>
<a href="filmes.html" onMouseOver="on('image2'); return true;" onMouseOut="off('image2'); statusOut(); return true;">
<img src="filmes.gif" border="0" name="image2" ALT="">
</a>
</body>
</html>
