// random image array
var quote = new Array()
quote[1] = "../imgs/global/quote_boul_1.gif";
quote[2] = "../imgs/global/quote_boul_2.gif";
quote[3] = "../imgs/global/quote_boul_3.gif";
quote[4] = "../imgs/global/quote_boul_4.gif";
//quote[5] = "../imgs/quotes/quote_lass_1.gif";
//quote[6] = "../imgs/quotes/quote_lass_2.gif";
//quote[7] = "../imgs/quotes/quote_lass_3.gif";
//quote[8] = "../imgs/quotes/quote_lass_4.gif";

// select random image
var rn = Math.floor(Math.random() * quote.length);
if (rn == 0) {
	rn = 1;
}

// create container variable
var quote_output = "";

// assign random image
var quote_output = "<img src='" + quote[rn] + "' width=310 height=95 alt=quote border=0 name=quote>";