topical media & game development
slogan-inspire.cfg
display
<center><em>
<span id=slogan></span>
</em></center>
script
<script>
slogans0 = 'inspiration by art';
slogans1 = 'art must be beautiful -- identity';
slogans2 = 'the aesthetics of our time (1) -- 9/11';
slogans3 = 'nanowebbers -- rethorics of the medium';
slogans4 = 'the aesthetics of our time (2) -- youtube';
slogans5 = 'the new literacy -- games vs books';
slogans6 = 'people keep asking me questions -- what, how and why';
slogans7 = 'creative (application of) technology</a>';
function
var max = 8;
var timer;
function print_slogan() {
var i = Math.floor((Math.random() * 100) % max);
item = eval('slogans' + i);
slogan = document.getElementById('slogan');
//document.write(item);
slogan.innerHTML = item;
timer = setTimeout('print_slogan()',3500);
}
print_slogan();
</script>
(C) A. Eliëns
2/9/2007
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.