window.onload = init;
function init() {}
function a(what) { location.href = what; }
function flashIt(obj, how) {
	// 1 - over, 0 - out, 10 + - specials
	
	oBtm = obj.style.borderBottomColor; oTop = obj.style.borderTopColor;
	oLeft = obj.style.borderBottomColor; oRight = obj.style.borderRightColor;
	
if (how == 1) {
	obj.style.backgroundColor = "#FFE08C";
	oLeft = "#FFCC00"; oRight = "#FFE08C";
	oBtm = '#FFCC00'; oTop = '#FFE08C';	
	//obj.style.cursor = "hand";
	}
if (how == 0) {
	obj.style.backgroundColor = "#FFFFFF";
	oLeft = '#DFDFDF'; oRight = '#FFFFFF';
	oBtm = '#999999'; oTop = '#f3f3f3';
	}
	obj.style.borderBottomColor = oBtm; oTop = obj.style.borderTopColor = oTop;
	obj.style.borderLeftColor = oLeft; oTop = obj.style.borderRightColor = oRight;
}
