$(document).ready(
	function()
	{
	
	$("#main_content").addClass("js");
	
	// Open links with rel="external" in new window - like ye ole' target="_blank"
	$('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});

	}
);