


if(typeof sIFR == "function"){

// This is the preferred "named argument" syntax
	sIFR.replaceElement(named({sSelector:"body h1", sFlashSrc:"/rrrr/files/sifr.swf", sColor:"#000000", sBgColor:"#FFFFFF", nPaddingTop:0, nPaddingBottom:0, sWmode:"transparent" }));
	sIFR.replaceElement(named({sSelector:"body h2", sFlashSrc:"/rrrr/files/sifr.swf", sColor:"#000000", sBgColor:"#FFFFFF", nPaddingTop:0, nPaddingBottom:0, sWmode:"transparent" }));
	

};



function genHex(){
colors = new Array(14)
colors[0]="0"
colors[1]="1"
colors[2]="2"
colors[3]="3"
colors[4]="4"
colors[5]="5"
colors[5]="6"
colors[6]="7"
colors[7]="8"
colors[8]="9"
colors[9]="a"
colors[10]="b"
colors[11]="c"
colors[12]="d"
colors[13]="e"
colors[14]="f"

digit = new Array(5)
color=""
	for (i=0;i<6;i++){
	digit[i]=colors[Math.round(Math.random()*14)]
	color = color+digit[i]
	
	}
	
}

genHex();

var xpos = document.body.offsetWidth;
xpos = (xpos - 910) / 2 + 150;

var c1 = Math.round(Math.random()) * 255;
var c2 = Math.round(Math.random()) * 255;
var c3 = Math.round(Math.random()) * 255;

if (c1 == 0) { c1 = "00"};
if (c2 == 0) { c2 = "00"};
if (c3 == 0) { c3 = "00"};

if (c1 == 255) { c1 = "FF"};
if (c2 == 255) { c2 = "FF"};
if (c3 == 255) { c3 = "FF"};

//alert(String(c1)+String(c2)+String(c3));

xpos = xpos+Math.floor(Math.random()*100);

function myDrawFunction()
{
// jg_doc.setColor("#CC0000"+color);
  jg_doc.setColor("#CC0000");
  jg_doc.drawLine(xpos,0,0,800);
  jg_doc.paint(); 
	
}

var jg_doc = new jsGraphics();



//myDrawFunction();

//document.writeln("	<style type='text/css' media='screen'>a:hover {color: #"+color+"; text-decoration: none;}</style>");
