			$(window).load(function() {
				document.getElementById('st-websites').click();
				var h=0;
				setBodyHeight();
				$('p.content').each(function() {
					var temp = $(this).height();
					if(temp>h){h=temp;}
				});
				$('p.content').each(function() {
					$(this).css('height',h);
				});

				var pbcrH=$('#page-body-content').height();
				var pbcrContentH= $("#pbcr-tags").height()+23 + $("#pbcr-accordion").height();

				if(pbcrH>pbcrContentH){
					//$("#pbcr-tags").css('height',pbcrH-$("#pbcr-accordion").height()-($.browser.msie && parseInt($.browser.version)<7?29:26)+"px");
					$('#page-body-content-left').css('height', pbcrH+'px');
				}else{
					$('#page-body-content-left').css('height', pbcrContentH+'px');
				}
			});