var multipage;
multipage=window.onload=function()
{
function fullscreen()
{
var a=document.getElementsByTagName("a");
for(var i=0;i<a.length;i++)
{
a[i].onclick=function()
{
window.location=this.getAttribute("href");return false
}
}
}
function hideURLbar()
{window.scrollTo(0,0.9)
}
multipage.init=function()
{
fullscreen();hideURLbar()
};
multipage.init()
}
just put the above in a .js file and linked it to every page and it works
i win