// JavaScript Document
if ( $.browser.msie && $.browser.version == 6 )
{
	$(document).ready(function(){
		$(window).resize(function() {
			var top = (document.documentElement && document.documentElement.scrollTop) ?  document.documentElement.scrollTop : document.body.scrollTop;
			top = document.documentElement.clientHeight+top-31;
			if(top+31>document.body.offsetHeight)top = document.body.offsetHeight-31;
			$("#bottom").css({ top: top+"px" });
		});
	
		$(window).scroll(function() {
			var top = (document.documentElement && document.documentElement.scrollTop) ?  document.documentElement.scrollTop : document.body.scrollTop;
			top = document.documentElement.clientHeight+top-31;
			$("#bottom").css({ top: top+"px" });
		});
		$(window).scroll();
		$(window).resize();
	})
}
$(document).ready(function(){
      if ( !($.browser.msie && $.browser.version == 6 )) {
            $(window).resize(function() {
                $('#content_sub').css('height',$(document).height());
            });
            $(window).resize();
      }
      
})

