$(function(){
	/* Navigateion
	var nav = $('#_navigation').html();
	$('#_navigation').empty()
	$('#navigation').html(nav);
	*/

	// h1
	var h1 = $('#content h1').html();
	$('#content h1').hide();
	$('#header #title').html(h1);

	// Menu
	var menu = $('#_menu').html();
	$('#_menu').empty()
	$('#menu').html(menu);
	$('#menu a').wrapInner(document.createElement("span"));
	$('#menu a').each(function(){if($(this).text()==channelName){$(this).addClass('select')}})

	// Location
	if ($('#location a').length > 1){
		$('#location a').each(
			function(i){if (i==0){$(this).addClass('select')}}
		);
	} else {
		$('<a class="select" href="/"></a>').insertBefore($('#location a'))
	}
});
