/********************************************************************************
Copyright (C) 1999 Thomas Brattli
This script is made by and copyrighted to Thomas Brattli at www.bratta.com
Visit for more great scripts.
This may be used freely as long as this msg is intact!
********************************************************************************/
n=document.layers
ie=document.all

function hideIt(){
	if(ie || n){
		if(n) document.divLoadCont.visibility="hidden"
		else divLoadCont.style.visibility="hidden"
	}
}


// Fading Links
document.onmouseover = domouseover;
document.onmouseout = domouseout;

function domouseover() {
  if(document.all){
  srcElement = window.event.srcElement;
  if (srcElement.className.indexOf("fade") > -1) {
        var linkName = srcElement.name;
      fadein(linkName);
      }
      }
}

function domouseout() {
  if (document.all){
  srcElement = window.event.srcElement;
  if (srcElement.className.indexOf("fade") > -1) {
        var linkName = srcElement.name;
      fadeout(linkName);
      }
      }
}

function makearray(n) {
    this.length = n;
    for(var i = 1; i <= n; i++)
        this[i] = 0;
    return this;
}

hexa = new makearray(16);
for(var i = 0; i < 10; i++)
    hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";

function hex(i) {
    if (i < 0)
        return "00";
    else if (i > 255)
        return "ff";
    else
       return "" + hexa[Math.floor(i/16)] + hexa[i%16];}

function setbgColor(r, g, b, element) {
      var hr = hex(r); var hg = hex(g); var hb = hex(b);
      element.style.color = "#"+hr+hg+hb;
}

function fade(sr, sg, sb, er, eg, eb, step, direction, element){
    for(var i = 0; i <= step; i++) {
setTimeout("setbgColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+ ")),Math.floor(" +sb+ " * ((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),"+element+");",i*step);
    }
}

function fadeout(element) {
          
    fade(255,128,0, 255,255,255, 25, 1, element);
}

function fadein(element) {

    fade(255,255,255, 255,128,0, 12, 1, element);
}

function fadeIn2(id){
	fade(0,0,0, 88,118,152, 25, 1, id);
}

function fadeOut2(id){
	fade(88,118,152, 0,0,0, 29, 1, id);
}

// RECHTSKLICKVERBOT

var message="COPYRIGHT PROTECTED";
function clickIE() {
		 if (document.all) {
		 		 alert(message);return false;
		 }
}
function clickNS(e) {
		 if  (document.layers||(document.getElementById&&!document.all)) {
		 		 if (e.which==2||e.which==3) {
		 		 		 alert(message);
		 		 		 return false;
		 		 }
		 }
}

if (document.layers) {
		 document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;
}else{
		 document.onmouseup=clickNS;document.oncontextmenu=clickIE;
}

document.oncontextmenu=new Function("return false")


