h1 {font-size: 8pt;font-family: verdana;font-weight: bold;color: black; margin: 0cm 2cm 0cm 0cm}
h2 {font-size: 8pt;font-family: verdana;font-weight: normal;color: black}
h3 {font-size: 10pt;font-family: verdana;font-weight: normal;color: black; margin: 0cm 2cm 0.2cm 0cm}
h4 {font-size: 12pt;font-family: verdana;font-weight: bold;color: white}
h5 {font-size: 16pt;font-family: verdana;font-weight: bold;color: black}
h6 {font-size: 12pt;font-family: verdana;font-weight: bold;color: black}

a:link {text-decoration: none; color: black; font-weight: 0}
a:visited {text-decoration: none; color: #990000; font-weight: 0}
a:hover   {text-decoration: none; color: #999999; font-weight: 0}




<STYLE>
<!--
body {
  scrollbar-arrow-color: #000000;
  scrollbar-track-color: #CCCCCC;
  scrollbar-face-color: #FFFFFF;
  scrollbar-highlight-color: #000000;
  scrollbar-3dlight-color: #000000;
  scrollbar-darkshadow-color: #000000;
  scrollbar-shadow-color: #000000;
}
-->
</STYLE>




  

<SCRIPT LANGUAGE="JavaScript" type="text/javascript">

<!--
//Visit http://rainbow.arch.scriptmania.com for this script and more.

var current = 0
var x = 0
var y = 0

// The number 100 represents the wait in milliseconds 
// between the typing of each character in the message list.

var speed = 100

// The number 2000 represents the number of milliseconds 
// between the changing of each message (2 seconds, here). 
// Anywhere between 1500 and 5000 would be fine.

var speed2 = 2000

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

// This is Message-Number Array

typ = new initArray(4)
typ[0]="BRUCE AIRHEAD!"
typ[1]="ONE Brave Man..."
typ[2]="ONE Enormous Balloon..."
typ[3]="ONE Amazing Show!"

function typewrite() {
var m = typ[current]

// The _ can be removed by removing + "_" below

window.status = m.substring(0, x++) + "_"

if (x == m.length + 1) {
x = 0
current++

if (current > typ.length - 1) {
current = 0
}

setTimeout("typewrite()", speed2)
}

else {
setTimeout("typewrite()", speed)
}
}

typewrite()
//-->

</SCRIPT>





