<HTML>
<HEAD>
<TITLE> NC Worlds Lowest </TITLE>
<meta http-equiv="Page-Enter" content="revealTrans(Duration=1.0,Transition=1)">
<meta http-equiv="Page-Exit" content="revealTrans(Duration=1.0,Transition=2)">
<meta http-equiv="Site-Enter" content="revealTrans(Duration=1.0,Transition=1)">
<meta http-equiv="Site-Exit" content="revealTrans(Duration=1.0,Transition=2)">
<b><FONT FACE="Verdana" SIZE="3"></b>
<b><BODY bgcolor="#000000" text="#00FF00" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"></b>
<body background="http://www.heartagram.com/music/covers/dsbh.jpg" bgproperties= "fixed">
<style>
.spanstyle {
position:absolute;
visibility:visible;
top:-50px;
font-size:15pt;
font-family:technic;
font-weight:bold;
color:white;
}
</style>
<script>
/*
Cursor Trailor Text- By Peter Gehrig (http://www.24fun.ch/)
Permission given to Dynamicdrive.com to feature script in it's archive.
For full source code, installation instructions, and 1000's more DHTML scripts,
visit http://dynamicdrive.com
*/
var x,y
var step=20
var flag=0
// Your snappy message. Important: the space at the end of the sentence!!!
var message="Neagative Camber Bitches!!!!!!!!!!!!!! "
message=message.split("")
var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
xpos[i]=-50
}
var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
ypos[i]=-50
}
function handlerMM(e){
x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
flag=1
}
function makesnake() {
if (flag==1 && document.all) {
for (i=message.length-1; i>=1; i--) {
xpos[i]=xpos[i-1]+step
ypos[i]=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y
for (i=0; i<message.length-1; i++) {
var thisspan = eval("span"+(i)+".style")
thisspan.posLeft=xpos[i]
thisspan.posTop=ypos[i]
}
}
else if (flag==1 && document.layers) {
for (i=message.length-1; i>=1; i--) {
xpos[i]=xpos[i-1]+step
ypos[i]=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y
for (i=0; i<message.length-1; i++) {
var thisspan = eval("document.span"+i)
thisspan.left=xpos[i]
thisspan.top=ypos[i]
}
}
var timer=setTimeout("makesnake()",30)
}
</script>
</head>
<script language="JavaScript1.2">
/*
Animated Document title- By Dynamicdrive.com
For full source, TOS, and 100s DTHML scripts
Visit http://dynamicdrive.com
*/
if (document.all||document.getElementById){
var thetitle=document.title
document.title=''
}
////Animation code below
////based on script from http://wsabstract.com/script/script2/statusanimate.shtml
var data="0123456789";
var done=1;
function statusIn(text){
decrypt(text,2,1);
}
function statusOut(){
self.status='';
done=1;
}
//-------------------------\//decrypt(string, int, int)\//-------------------------\//
//text(string): the text to be decrypted on
//the status bar.
//
//max(int): the number of times a random string
//is displayed before the next character is
//'decrypted'.
//
//delay(int): the number of milliseconds between
//each display of a random string
//
//Example:
//decrypt('Enter my site.',10,10);
//
//text = 'Enter my site.' :: 'Enter my site.' is
//eventually decrypted
//
//max = 10 :: a different random string is dis-
//played 10 times before a new character is
//decrypted
function decrypt(text, max, delay){
if (done){
done = 0;
decrypt_helper(text, max, delay, 0, max);
}
}
function decrypt_helper(text, runs_left, delay, charvar, max){
if (!done){
runs_left = runs_left - 1;
var status = text.substring(0,charvar);
for(var current_char = charvar; current_char < text.length; current_char++){
status += data.charAt(Math.round(Math.random()*data.length));
}
document.title = status;
var rerun = "decrypt_helper('" + text + "'," + runs_left + "," + delay + "," + charvar + "," + max + ");"
var new_char = charvar + 1;
var next_char = "decrypt_helper('" + text + "'," + max + "," + delay + "," + new_char + "," + max + ");"
if(runs_left > 0){
setTimeout(rerun, delay);
}
else{
if (charvar < text.length){
setTimeout(next_char, Math.round(delay*(charvar+3)/(charvar+1)));
}
else
{
done = 1;
}
}
}
}
//if IE 4+ or NS 6+
if (document.all||document.getElementById)
statusIn(thetitle)
</script>
</HEAD>
<script><!-- The Scrolling Message Java Applet ----------
function scroll_status (sval)
{
var msg = "//NEGATIVE CAMBER\\BITCH!!!!!!!!!!!" ;
var out = " ";
var c = 1;
if (150 < sval) {
sval--;
var cmd="scroll_status(" + sval + ")";
tmx2 = window.setTimeout(cmd, 25);
}
else if (sval <= 150 && 0 < sval) {
for (c=0 ; c < sval ; c++) {
out+=" ";
}
out+=msg;
sval--;
var cmd="scroll_status(" + sval + ")";
window.status=out;
tmx2=window.setTimeout(cmd,25);
}
else if (sval <= 0) {
if (-sval < msg.length) {
out+=msg.substring(-sval,msg.length);
sval--;
var cmd="scroll_status(" + sval + ")";
window.status=out;
tmx2=window.setTimeout(cmd,25);
}
else {
window.status=" ";
tmx2=window.setTimeout("scroll_status(150)",25);
}
}
}
// -- End of JavaScript code ------- --></script>
</SCRIPT>
<BODY BGCOLOR="#FFFFFF"
OnLoad="tmx1a=window.setTimeout('scroll_status(100)',50
);makesnake()" style="width:100%;overflow-x:hidden;overflow-y:scroll">
<script>
<!-- Beginning of JavaScript -
for (i=0;i<=message.length-1;i++) {
document.write("<span id='span"+i+"' class='spanstyle'>")
document.write(message[i])
document.write("</span>")
}
if (document.layers){
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
// - End of JavaScript - -->
</script>
sup im Pasqually i live in southaven,MS. Im in NEGATIVE CAMBER. listen to HIM they kick ass.....www.heartagram.com
<A HREF="http://www.worldslowest.com">http://www.worldslowest.com</A>
<img src=http://www.worldslowest.com/members/pics/railinondubs_GrayGhost_3.jpg></TD></TD></CENTER></TD>
</HTML>