var fDesc=new Array(); fDesc[0] = "PiBakery makes it easy to setup a Raspberry Pi. You can configure your Raspberry Pi to connect to your WiFi network as soon as it switches on for the very first time. It can automatically install a VNC server on your Pi the first time it boots up, so that you can connect straight to it and start hacking. You can also customize the standard Raspbian image, install programs, such as Apache and PHP, etc."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }