
$('html').addClass('js');

$(function (){
	
	// expand navigation to container
	if ($('#navigation').length && $('#container').length) {
		// grab heights
		var navH = $("#navigation").height();
		var conH = $("#container").height();
		// test if nav is smaller and resize
		if (navH < conH) {
			$("#navigation").height(conH);
		}
	}
	
	//
	//	GLOBAL
	//
	// open rel="external" links in new window (instead of target="_blank")
	$("a[rel='external']").addClass("external").click( function() { window.open( $(this).attr('href') ); return false; } );

});