$(document).ready(function () {
	if ($.browser.msie)
	{
		$("#topper").show();
	}
	else
	{
		$(".contentContainer").css("padding-top","12px");
	}
	
	$("#pageContent img").load(function () {
		matchHeights();
	});
	
	matchHeights();
	
	$('a.subcatLink').click(function (){
		$('.pageList').removeClass('active');
		$('#'+$(this).attr('id')+'_pages').addClass('active');
	});
});

function matchHeights()
{
	while ($('#sidebar').innerHeight() < $('#pageContent').innerHeight())
	{
		$('#sidebar').css('height',$('#pageContent').innerHeight()+"px");
	}
}