var menu = function() {
var collection = new Array();
var anchors = new Array();
var wrap  = document.getElementById("menuWrap");

for(j=0;j<wrap.getElementsByTagName("a").length;j++){
	wrap.getElementsByTagName("a")[j].className = 'pos_' + eval(j + 1);
	if (j>7) wrap.getElementsByTagName("a")[j].className = 'pos_8';
}
}

var fixRight = function() {
if (document.getElementById('rightCont'))
if (navigator.userAgent.indexOf("MSIE") > -1) document.getElementById('rightCont').style.height = document.body.clientHeight - 370 + 'px';
else document.getElementById('rightCont').style.minHeight = document.body.clientHeight - 370 + 'px';
}

if (navigator.userAgent.indexOf("MSIE") > -1) {
window.attachEvent("onload", menu);
window.attachEvent("onload", fixRight);
}
else {
window.addEventListener("load", menu, false);
window.addEventListener("load", fixRight, false);
}
