$(function(){ // on page load
	/*$("body").display("none");*/
	$("body").fadeIn("slow");
	$("#sidebar_wrapper").height( $("#content").height());
	$("#sidebar").stickyfloat({ duration: 50 });
	
	/*
	var msie6 = $.browser == 'msie' && $.browser.version < 7;
	if (!msie6) {
		var top = $('#sidebar').offset().top - parseFloat($('#sidebar').css('margin-top').replace(/auto/, 0));
		$(window).scroll(function (event) {
			// what the y position of the scroll is
			var y = $(this).scrollTop();
			// whether that's below the form
			if (y >= top) {
			// if so, ad the fixed class
			$('#sidebar').css({'position' : 'fixed', 'top' : '0', 'left' : ($(window).width() / 2) + 170, 'width' : '300px'});
			} else {
			// otherwise remove it
			$('#sidebar').css({'position' : 'absolute', 'top' : '0', 'left' : '0', 'width' : '100%'});
			}
		});
	}
	*/
			
});
