// JavaScript Document
//<![CDATA[
IE6fix = {
	els: [],
	init: function(){
		if(navigator.userAgent.indexOf("MSIE") > 1){
			els = $("navcontainer").getElementsByTagName("LI");
			for (var i=0; i<els.length; i++) {
				els[i].onmouseover=function() {
					this.className+=" ie6fix";
				}
				els[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" ie6fix\\b"), "");
				}
			}
		}
	}
}
function adjustwin(){
	var dHeight = document.viewport.getHeight();
	var elmHeigt = $('wrap').getHeight();
	var cHeight = dHeight - 400;
	if(elmHeigt < dHeight){
		$('content').setStyle({
		  height: cHeight + "px"
		});
	}
}
function pages_init(){
	IE6fix.init();
}
function txtQuery(){
}
Event.observe(window, 'load', pages_init, false);
//]]>