if(navigator.userAgent.indexOf("MSIE 6.0") >= 0) {
	$(window).scroll (posfixed);
	$(window).resize (posfixed);
	$(window).load (posfixed);
}

function posfixed() {
	$("#leftMenuWrapper").css({
		'height': $(window).height() - 3  + 'px',
		'position': 'absolute',
		top: $(document).scrollTop()
	});
}