
var browser = navigator.userAgent.toLowerCase();
if ((navigator.appName == "Microsoft Internet Explorer" && browser.indexOf("msie 6.") != -1) || (navigator.appName == "Microsoft Internet Explorer" && browser.indexOf("msie 7.") != -1)) {
    heightmax=226;
}
else{heightmax=212;}


$(document).ready(function(){
        var startboxdiv= document.getElementById("startbox")
          if (document.getElementById("startbox")){
            startboxdiv.style.height="40px";
          }
          
  $('#startbox').animate({height: heightmax+"px"}, { queue:false, duration:1500});}, 1000 );

$(function() {


    $("#startpagenav_button").toggle(
      function(){
        $('#startbox').animate({height: 40+"px"}, { queue:false, duration:700 });
      },
      function(){
        $('#startbox').animate({height: heightmax+"px"}, { queue:false, duration:700});
      }

    );
});
