$(document).ready(function()
{
	// Set the nav height to content height
	var contentHeight = $("#content").height();
	var navHeight = $("#nav").height();	
	if ( navHeight < contentHeight )
	{
			$("#nav").height(contentHeight);	
	}
	
	
	var flashBanner = new SWFObject("assets/swf/banner.swf", "flashBanner", "643", "243", "9", "#FFFFFF");
	flashBanner.addParam("allowScriptAccess", "always");
	flashBanner.write("index-banner");
  
});