// JavaScript Document
// select one of 4 random column backgrounds. complicated by the fact that some are links and others are not.	
	
columnWithBackground = function(divName) {
	
	switch(Math.floor(Math.random() * 11) ) {
		
		case 0:
		document.write('<div id="' + divName + '" style="background-image:url(images/headline-premiums.gif)"></div>')	
		break;
		
		case 1:
		document.write('<div id="' + divName + '" style="background-image:url(images/headline-reputable.gif)"></div>')	
		break;
		
		case 2:
		document.write('<div id="' + divName + '"><a href="employee-coverage.html"><img src="images/headline-benefits.gif" border="0" /></a></div>')	
		break;
		
		case 3:
		document.write('<div id="' + divName + '"><a href="who-representatives.html"><img src="images/headline-professionals.gif" border="0" /></a></div>')	
		break;
		
		case 4:
		document.write('<div id="' + divName + '" style="background: url(images/rotate1.jpg) no-repeat 8px 24px"></div>')	
		break;
		
		case 5:
		document.write('<div id="' + divName + '" style="background-image:url(images/rotate2.jpg); background-position: 8px 24px"></div>')	
		break;
		
		case 6:
		document.write('<div id="' + divName + '" style="background-image:url(images/rotate3.jpg); background-position: 8px 24px"></div>')	
		break;
		
		case 7:
		document.write('<div id="' + divName + '" style="background-image:url(images/headline-peace.gif)"></div>')	
		break;
		
		case 8:
		document.write('<div id="' + divName + '" style="background-image:url(images/headline-opportunities.gif)"></div>')	
		break;
		
		case 9:
		document.write('<div id="' + divName + '" style="background-image:url(images/headline-healthy.gif)"></div>')	
		break;
		
		case 10:
		document.write('<div id="' + divName + '" style="background-image:url(images/headline-perspective.gif)"></div>')	
		break;
		
		
	}
	
	
	
}