function randomimg( prod ){
    var tag1 = "<li style=\"background-image: url(\'design/images/layout/products/product-";
	var tag2 = ".png\')\">";
	
	if ( prod == 'ra' ) {
		var img = ['0', '1', '2']; 
		var num  = img.length;
	}	
	if ( prod == 'wf' ) {
		var img = ['0', '1', '2', '3']; 
		var num  = img.length;
	}		
	var i = Math.floor( num*Math.random() )	
	document.write( tag1 + prod + img[i] + tag2 );
}

function randomtext(){
	var text = new Array ();
	text[0] = "<font id='boxTextKap'>What does the Ascent WorkZone workforce management system do that I can't do with a spreadsheet?</font>";
	text[1] = "<br />What is workforce optimization?";
	text[2] = "What features does the Ascent WorkZone workforce management system offer?";
	text[3] = "<font id='boxTextKap'>Why should we use the Ascent WorkZone workforce management system to optimize our workforce?</font>";
	text[4] = "<br />Who is Karen?";
	text[5] = "Is my organization too small to use the Ascent WorkZone workforce management system?";
	text[6] = "How much does the Ascent WorkZone workforce management system cost?";
	text[7] = "How long does it take to install the Ascent WorkZone workforce management system?";
	text[8] = "<font id='boxTextKap'>Does the Ascent WorkZone workforce management system handle time and attendance?</font>";
	text[9] = "<font id='boxTextKap'>How many people do I need to run the Ascent WorkZone workforce management system?</font>";
	text[10] = "<font id='boxTextKap'>How much manual entry does your system require?</font>";
	text[11] = "<font id='boxTextKap'>Does the Ascent WorkZone workforce management system handle 24x7 operations?</font>";
	var i = Math.floor( text.length*Math.random() )
	document.write( text[i] );
}


