var colors = ['9b9c9e','2a7a8c','c5c6c7','000000','8eacb4','2a606c','a4bcc3'];

jQuery(document).ready(function(){    

	jQuery("#main-navigation li:last").addClass("last");
	jQuery.each($("#main-navigation li"), function(index,element){
		jQuery(element).find("a").css({backgroundColor: '#'+colors[index]});
		
		if(jQuery(element).attr("id") == 'li'+pageID){
			jQuery(element).find("a").css({backgroundColor: '#ffcc00'});
		}
	});
	
	
	//I FOKUS
	//ADVOKAT I FOKUS
	if(jQuery('#iFokus').length>0 && iFokusAlt && iFokusAlt.length > 0){
		 var fokusSelector = Math.ceil(iFokusAlt.length*Math.random()) - 1;
		 
		 if(iFokusAlt[fokusSelector].picUrl != 'http://www.net-blast.com:80/Webdesk/bilde/.gif'){
			jQuery('#iFokus').html('<a href="'+iFokusAlt[fokusSelector].url+'"><div class="content corner"><img src="'+iFokusAlt[fokusSelector].picUrl+'" alt="'+iFokusAlt[fokusSelector].name+'"/><h2>'+iFokusAlt[fokusSelector].name+'</h2><p>'+iFokusAlt[fokusSelector].presentation+'</p></div><div class="footer"></div></a>');			 
		 } else {
			jQuery('#iFokus').html('<a href="'+iFokusAlt[fokusSelector].url+'"><div class="content corner"><h2>'+iFokusAlt[fokusSelector].name+'</h2><p>'+iFokusAlt[fokusSelector].presentation+'</p></div><div class="footer"></div></a>');	 
		}		 	
	}			
	
	//CORNERS
	jQuery('.corner').corner();
});


window.onload = function(){
	
	

	//PERSONSØK
	init();
}


function init(){
	if(underholdning && foredrag && personer){
		initSearchTypes();
	} else {
		toConsole("underholdning: "+underholdning);
		window.setTimeout(init,200);
	}	
}


function toConsole(message){
	try {
		console.log(message);
	} catch(ex){
		//
	}
}
