<!-- Begin
var baner_js_text = new Array ("SCANDINAVIAN PRODUCTS","","It's <b><i>RightWay</i></b>...","", "... for your business","", "... for your life", "", "... for your industry", "", "... for your car", "", "... for your truck", "", "... for you", "", "... for your day", "", "... for your agriculture", "");


document.write('<span id="IRW">');
document.write('</span>');

var def_10='A',def_11='B',def_12='C',def_13='D',def_14='E',def_15='F';
var max_colorVal=15;
var min_colorVal=5;
var colorVal=max_colorVal;
var div_count=0;
var timeOutVal=250;

function baner_fade_desat(getColorIntVal) {
	if(getColorIntVal>=10) {
		for(var i=min_colorVal; i<=max_colorVal; i++) {
			if(getColorIntVal==i) {
				return(eval('def_' + i));
			}
		}
	} else { return(getColorIntVal);	}
}

function writeDiv() {
    document.getElementById("IRW").innerHTML = '<font style="color: #' + joinColor(baner_fade_desat(colorVal)) + '; ">' + baner_js_text[div_count] + '</font>';

    if((colorVal>min_colorVal) && (colorVal!=min_colorVal)) {
	colorVal--;
    } else {
	colorVal=max_colorVal;
	if(div_count<baner_js_text.length) {
	    div_count++;
	}
	if(div_count==baner_js_text.length) {
	    div_count = 0;
	    colorVal = max_colorVal;
	}
    }
    
    if(baner_js_text[div_count]=="") {
	setTimeout("writeDiv()",250);
    } else {
	if(div_count<baner_js_text.length) {
	    setTimeout("writeDiv()",timeOutVal);
	}
    }
}

function joinColor(getColor) {
	return (getColor + 'F' + getColor + 'F' + getColor + 'F');
}


writeDiv();
// End -->

