function increaseFontSize(size) {
   var p = $('#container p');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = size+"px"
   }
}
