// Setup syntax highlighter

$(document).ready(function() 
{
	if (typeof window.innerWidth != 'undefined')
	{
		FixPageHeight();
		$(window).resize(function() { FixPageHeight(); });
	}
});

function FixPageHeight ()
{
	if (($("#sidebar")) && (window.innerWidth > 768))
	{
		var sidebarHeight = $("#sidebar").height() - 40;
		$(".content .container").css("min-height", sidebarHeight + 'px');
	}
	
	else
	{
		$(".content .container").css("min-height", '1px');
	}
}
