// functions
function setbodystyle(stylesArray) {
  var i = 0;
  while (i < stylesArray.length) {
    if (stylesArray[i][0] && stylesArray[i][1]) {
	  eval('document.getElementsByTagName(\'body\')[0].style.' + stylesArray[i][0] + " = '" + stylesArray[i][1] + "';");
	  i++;
    }
  }
}