// JS to cycle the MadTV header randomly (as I can't decide on just one!).
//ok first lets create a random number between 1 and the top numbered header (in this case 10).
//when adding new headers to the site just put the new number of headers in the "((Math.random()* 10))" bit
var rand=Math.ceil((Math.random()* 10));
//now simply add the number to the img tag.
document.write("<img src=\"tt/header"+ rand +".jpg\" alt=\"MadTV: Better than a kick in the pants\" border=\"0\" width=\"650\" height=\"189\" />");
