hs.graphicsDir = 'js/graphics/';
hs.outlineType = 'rounded-white';
hs.showCredits = false;

function kickstart()
         {
             var contentheight = 0;
             var contentheightStr = "";
             var myObj = document.getElementById('footer');
             contentheight=document.getElementById('content').offsetHeight;
             menuheight=document.getElementById('menuleft').offsetHeight;
             if(menuheight>contentheight) { contentheight = menuheight; }

             contentheight=contentheight+30;

             contentheightStr = contentheight.toString()+"px";
             if(myObj)
                 {
                      myObj.style.left = "0px";
                      myObj.style.margin = "0px";
                      myObj.style.top = contentheightStr;
                      myObj.style.display = "block";
                 }
         }
