// JavaScript Document
fixIE=function(){
 var window= document.body.offsetHeight;
 var scroll= document.body.scrollTop;
  var div= document.getElementById("IEnav")
 if (document.all){
 		var pos=-50;
 		if (scroll>260){
	 		div.style.top=(scroll-300)+"px";
 		}else{
 			div.style.top=pos+"px";
 		}
	}else{
 		var pos= 260;
 		if (scroll>pos){
	 		div.style.top=scroll+"px";
 		}else{
 			div.style.top=pos+"px";
 		}
	}

 
// alert(window+"\n"+scroll );
}
window.onscroll=fixIE;
window.onresize=fixIE;
