<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<meta name="generator" content="TextMate
http://macromates.com/"><meta name="author" content="Jesper Sørensen">
<script type="text/javascript">
function colorize(elementID)
{
var colors = new Array();
colors.push("#00FF00");
colors.push("#FF0000");
colors.push("#FF00FF");
colors.push("#EEEEEE");
if (document.getElementById && document.getElementById(elementID))
{
var rand = ( Math.round( (colors.length-1) * Math.random() ) );
document.getElementById(elementID).style.color = colors[rand];
}
}
</script>
</head>
<body>
<span id="text">Tekst der skal farves!</span>
<script type="text/javascript">
colorize("text");
</script>
</body>
</html>