// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
 onres();
}

onres = function() {
  var myWidth = 0, myHeight = 0;
  var imgWidth = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
	//document.getElementById('container1').style.height = 100 + "%";
	//docH = document.getElementById('container1').style.height;
	//alert('Document height = ' + document.documentElement.scrollHeight);
	document.getElementById('bottom_block').style.top = document.documentElement.scrollHeight;
	
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
	document.getElementById('bottom_block').style.top = document.documentElement.scrollHeight;
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
	var ua = navigator.userAgent.toLowerCase();
	if(ua.indexOf('msie 8.0') != -1){
		myHeight = 0;
		document.getElementById('bottom_block').style.top =0;
	}

    //тлько для контактов
    if (location.href.indexOf("contacts") != -1){
	  if(myWidth <= 1096){
		document.getElementById('mapimage').style.width='520px';
		document.getElementById('map').style.width='520px';
	  }else{
		document.getElementById('mapimage').style.width='600px';
		document.getElementById('map').style.width='600px';
	  }
    }
}
onresize = onres;
window.onload=startList;