// JavaScript Document

aBGs = new Array();
aBGs[0] = '/cms/templates/jmdross/images/firemarks/bg_body_alliance.jpg';
aBGs[1] = '/cms/templates/jmdross/images/firemarks/bg_body_atlas.jpg';
aBGs[2] = '/cms/templates/jmdross/images/firemarks/bg_body_britishgeneral.jpg';
aBGs[3] = '/cms/templates/jmdross/images/firemarks/bg_body_caledonian.jpg';
aBGs[4] = '/cms/templates/jmdross/images/firemarks/bg_body_commercialunion.jpg';
aBGs[5] = '/cms/templates/jmdross/images/firemarks/bg_body_essex-and-suffolk.jpg';
aBGs[6] = '/cms/templates/jmdross/images/firemarks/bg_body_guardian.jpg';
aBGs[7] = '/cms/templates/jmdross/images/firemarks/bg_body_lawunion-crown.jpg';
aBGs[8] = '/cms/templates/jmdross/images/firemarks/bg_body_lawunion.jpg';
aBGs[9] = '/cms/templates/jmdross/images/firemarks/bg_body_london-lanchshire.jpg';
aBGs[10] = '/cms/templates/jmdross/images/firemarks/bg_body_northwestern.jpg';
aBGs[11] = '/cms/templates/jmdross/images/firemarks/bg_body_norwich.jpg';
aBGs[12] = '/cms/templates/jmdross/images/firemarks/bg_body_palatine.jpg';
aBGs[13] = '/cms/templates/jmdross/images/firemarks/bg_body_patriotic.jpg';
aBGs[14] = '/cms/templates/jmdross/images/firemarks/bg_body_pheonix.jpg';

function changeFireMark() {
	var usePos = Math.floor(Math.random() * aBGs.length);
	oBody = document.body;
	sBGString = "#BB3333 url('" + aBGs[usePos] + "') no-repeat left top";	
	oBody.style.background = sBGString;
	window.setTimeout('changeFireMark()', 10000);
}

window.addEvent('domready', function() {
	changeFireMark();
});	

