/*** Temporary text filler function. Remove when deploying template. ***/
var gibberish=["This is just some filler text.", "Welcome to this website, we have some sample sentences.", "Demo text content to give you an idea what text looks like."]
function filltext(sentences){
for (var i=0; i<sentences; i++)
document.write(gibberish[Math.floor(Math.random()*3)]+" ")
}