HTML Code:
<style type="text/css">
body { font-family: arial; color: FFFFFF; font-size: 10px; background-color:ffffff; background-image:url([url]http://c.myspace.com/Groups/00012/06/54/12954560_l.jpg);[/url] background-repeat: repeat; background-attachment: fixed; }
table, tr, td {background:transparent; border:0px;font-family: arial; color: FFFFFF !important}<br>
table table table {background:transparent;font-family: arial; color: FFFFFF !important}
table table table td { background-color:001b35; padding: 2px; filter:alpha(opacity=100); -moz-opacity:100; opacity:100; -khtml-opacity:100; }
table table table table td {filter:none;font-family: arial; color: FFFFFF !important}
table table table {
border-width:2px;
border-color:0FFFFFF ;
border-style:solid;
}
table table table table {border:0px;}
input {background-color:transparent !important;}
div {font-family: arial; color:FFFFFF; font-size: 12px !important;}
.nametext {font-family: arial; color:FFFFFF; font-size: 12px !important;}
.whitetext12 {font-family: arial; color: FFFFFF ; font-size: 10px !important;}
.lightbluetext8 {font-family: arial; color: FFFFFF; font-size: 14px; letter-spacing: -1.5px;text-transform:uppercase !important;}
.orangetext15 { font-family: arial; font-size: 10px; color:FFFFFF;text-transform:uppercase; border-color:FFFFFF; display:block; width:420px; border-width: 0 0 1px; }
.blacktext12 {font-family: arial; font-size: 10px; color: FFFFFF !important}
.redtext {font-family: arial; color:FFFFFF; font-size: 10px !important;}
.redbtext {font-family: arial; color: FFFFFF ; font-size: 10px !important;}
.blacktext10 {font-family: arial; color: FFFFFF; font-size: 10px !important;}
.btext {color: FFFFFF !important;}
a img {border-color:FFFFFF; border-style:solid; border-width:2px;}
a:hover img {border-color:FFFFFF; border-style:solid; border-width:2px;}
a {color: FFFFFF !important; text-decoration:none !important; text-transform:none !important; font-weight:normal !important; font-style:normal !important;}
a:hover {color:4f4f4fimportant; text-decoration:underline !important; text-transform:none !important; font-style:normal !important;}
table table table td {vertical-align:top !important;}
span.blacktext12 {visibility:visible !important; background-image: url([url]http://c.myspace.com/Groups/00012/26/64/12954662_l.jpg);background-color:[/url] transparent !important;background-position: top left; font-size: 0px;letter-spacing: -0.5px; width:435px; height:75px; display: block !important;}
span.blacktext imag {display: none;}
.blacktext10 {border-top-width:1px; border-bottom-width:0px; border-left-width:0px; border-right-width:0px;border-color:FFFFFF; border-style:solid; display:block; width:100%;}
</style>
<style type="text/css">.contactTable
{width:300px !important; height:150px !important;
padding:0px !important;
background-image:url([url]http://c.myspace.com/Groups/00012/78/64/12954687_l.jpg);background-attachment:scroll;[/url] background-position:center center;background-repeat:no-repeat; background-color:transparent;}.contactTable table, table.contactTable td { padding:0px !important;border:0px; background-color:transparent; background-image:none;}.contactTable a img {visibility:hidden; border:0px !important;}.contactTable .text {font-size:1px !important;}.contactTable .text, .contactTable a, .contactTable img {filter:none !important;}.contactTable .whitetext12 {display:none;}</style><div style="position:absolute;z-index:9;left:0px;top:30px;width:50px;height:10px;"><A href="http://www.uakings.tripod.com" target="_blank" ><img alt="uakings" border="1" src="http://img133.imageshack.us/img133/7253/ds85dwp6uvdl1ck.gif"></A></div>I edited my profile at <A href="http://www.uakings.tripod.com" target="_blank" >uakings.tripod.com</A>, check out these <A href="http://www.uakings.tripod.com" target="_blank" >uakings layout!</A><br><br>
<style type="text/css">
#supertext {
position:absolute;
left:0;
top:0;
visibility:hide;
visibility:hidden;
}
</style>
<script language="JavaScript1.2">
/*
Bouncy message script- By Dynamicdrive.com
Code based on Lloyd Hassell's, at [url]http://www.dynamicdrive.com/dynamicindex4/bounceimage.htm[/url]
For full source, TOS, and 100s DTHML scripts, visit [url]http://dynamicdrive.com[/url]
*/
//Configure the below three variables
//1) welcome to uakings.tripod.com (HTML accepted)
var thecontent='<h2><font color="#0000FF">welcome to uakings!</font></h2>'
//2) Set delay after which message should be hidden, in miliseconds ('' makes it incessantly visible on the screen)
var hidetimer='';
//3) Set speed of animation (1-50), where larger is faster
var BallSpeed = 20;
///NO NEED TO EDIT BELOW THIS LINE///////////
var contentWidth;
var contentHeight;
var maxBallSpeed = 50;
var xMax;
var yMax;
var xPos = 0;
var yPos = 0;
var xDir = 'right';
var yDir = 'down';
var superballRunning = true;
var tempBallSpeed;
var currentBallSrc;
var newXDir;
var newYDir;
function initializeBall() {
if (document.all) {
xMax = document.body.clientWidth
yMax = document.body.clientHeight
document.all("supertext").style.visibility = "visible";
contentWidth=supertext.offsetWidth
contentHeight=supertext.offsetHeight
}
else if (document.layers) {
xMax = window.innerWidth;
yMax = window.innerHeight;
contentWidth=document.supertext.document.width
contentHeight=document.supertext.document.height
document.layers["supertext"].visibility = "show";
}
setTimeout('moveBall()',400);
if (hidetimer!='')
setTimeout("hidetext()",hidetimer)
}
function moveBall() {
if (superballRunning == true) {
calculatePosition();
if (document.all) {
document.all("supertext").style.left = xPos + document.body.scrollLeft;
document.all("supertext").style.top = yPos + document.body.scrollTop;
}
else if (document.layers) {
document.layers["supertext"].left = xPos + pageXOffset;
document.layers["supertext"].top = yPos + pageYOffset;
}
animatetext=setTimeout('moveBall()',20);
}
}
function calculatePosition() {
if (xDir == "right") {
if (xPos > (xMax - contentWidth - BallSpeed)) {
xDir = "left";
}
}
else if (xDir == "left") {
if (xPos < (0 + BallSpeed)) {
xDir = "right";
}
}
if (yDir == "down") {
if (yPos > (yMax - contentHeight - BallSpeed)) {
yDir = "up";
}
}
else if (yDir == "up") {
if (yPos < (0 + BallSpeed)) {
yDir = "down";
}
}
if (xDir == "right") {
xPos = xPos + BallSpeed;
}
else if (xDir == "left") {
xPos = xPos - BallSpeed;
}
else {
xPos = xPos;
}
if (yDir == "down") {
yPos = yPos + BallSpeed;
}
else if (yDir == "up") {
yPos = yPos - BallSpeed;
}
else {
yPos = yPos;
}
}
function hidetext(){
if (document.all)
supertext.style.visibility="hidden"
else if (document.layers)
document.supertext.visibility="hide"
clearTimeout(animatetext)
}
if (document.all||document.layers){
document.write('<span id="supertext"><nobr>'+thecontent+'</nobr></span>')
window.onload = initializeBall;
window.onresize = new Function("window.location.reload()");
}
</script>
</DIV>