// JavaScript Document
function MultiDimensionalArray(iRows,iCols) 
{ 
var i; 
var j; 
   var a = new Array(iRows); 
   for (i=0; i < iRows; i++) 
   { 
       a[i] = new Array(iCols); 
       for (j=0; j < iCols; j++) 
       { 
           a[i][j] = ""; 
       } 
   } 
   return(a); 
} 
var quote_image = Math.floor(5*Math.random())

var sDataArray=MultiDimensionalArray(5,5); 
sDataArray[0][0] =  "We can make Davis a national showcase as a low carbon community";
sDataArray[0][1] =  "Chris Jones, Energy researcher and Davis resident";
sDataArray[1][0] =  "Davis cannot solve the climate crisis, but we can make a difference. Our work has the potential to become a model for California and the nation.";
sDataArray[1][1] =  "Judy Moores, Davis resident";
sDataArray[2][0] =  "Together, is it possible to create a sustainable and just way of living lightly on this earth?  We have no choice but to try.";
sDataArray[2][1] =  "Lynne Nittler, Davis resident";
sDataArray[3][0] =  "With each step we take to lower our carbon footprint, we become a more resilient and thriving community. Our ingenuity is our greatest local asset.";
sDataArray[3][1] =  "Juliette Beck, Davis resident";
sDataArray[4][0] =  "Cool Davis embodies my own ideal of community responsiveness to our changing world. Smart, engaging and caring people who believe we can move towards a sustainable world and who are acting on that belief.";
sDataArray[4][1] =  "Cindy Dirk, Davis resident"; 
