var thespeed=15; //Enter scroll speed in integer (Advised: 1-3)
var xspeed=0; //Set for initial scrolling, if desired (ex:3), otherwise 0
var yspeed=0; //Set for initial scrolling, if desired (ex:3), otherwise 0

function scrollwindowX(){
	bob.scrollBy(xspeed,0)
}

function scrollwindowY(){
	bob.scrollBy(0, yspeed)
}

function initializeIT(){
	if (xspeed!=0){
		scrollwindowX()
	}
	if (yspeed!=0){
		scrollwindowY()
	}
}

if (document.all||document.getElementById)
setInterval("initializeIT()",20)

function resetSkills() {
	bob.scrollLeft = 0;
	bob.scrollTop = 0;
}

function lightup(tr) {
	tr.bgColor='#FF8800';
}

function lightdown(tr) {
	tr.bgColor='#EFEFEF';
}

function setRow(id) {
	//alert(id);
}