<!--
//image rotation
function choosePic() {
var myPix = new
Array("img_pg_janitorial_services/commercial_clean_janitor_02.jpg","img_pg_janitorial_services/floor_cleaning_02.jpg","img_pg_janitorial_services/commercial_space_1_02.jpg","img_pg_janitorial_services/commercial_space_2_02.jpg","img_pg_janitorial_services/commercial_space_3_02.jpg","img_pg_janitorial_services/warehouse_space_1_02.jpg") 
	if (document.images) {
		randomNum = 
Math.floor((Math.random() *10)) % 6
	document.myPicture.src = myPix[randomNum];
	}
}
-->