// Fix 2. menulinie
$(document).ready(function(){
	// Find den UL der skal arbejdes på
	var ul = $('div#tv2tv2 div#tv2top ul.tv2portal');
	// Slet de eksisterende links (LIer)
	ul.children().not('.tv2first').remove();
	// Opret nye links
	var links = {	'Forside':		'/',
			'Nyheder':		'/index.php?id=96',
			'Fakta':		'/index.php?id=64',
			'Job':			'/index.php?id=122',
			'Besøg TV 2':		'/index.php?id=26',
			'Modtageforhold':	'/index.php?id=25',
			'Kontakt TV 2':		'/index.php?id=24'};
	var index = 0;
	$.each(links, function(text, link){
		var newlink = '<li><a class="p' + index + '" href="'+link+'"><span class="tv2alt">'+text+'</span></a></li>';
		index++;
		ul.append(newlink);
	});
});

// Sæt valgt punkt i anden menulinie
function ni_set_selected(classname) {
	$('div#tv2tv2 div#tv2top ul.tv2portal li a.' + classname).addClass('tv2selected');
	ni_set_breadcrumbs();
} // End ni_set_selected()

// Sæt breadcrumbs
function ni_set_breadcrumbs(breadcrumbs) {
	// Find den UL der skal arbejdes på
	var ul = $('div#tv2tv2 div#tv2top div#tv2breadcrumbbox ul#tv2crumbs');
	// Slet de eksisterende links (LIer)
	ul.children().not('.tv2first').remove();
	// Indsæt startpunkt
	ul.append('<li><a href="/">omtv2.tv2.dk</a></li>');
	// Indsæt det medsendte
	ul.append(breadcrumbs);
} // End ni_set_breadcrumbs()