$("document").ready(function(){
	
	/**
	 * Selected header nav item border bottom -> only if subnav
	 */
	$("#headerNav .current_page_item, #headerNav .current_page_parent").each(function(){
		if ($("#subNav").length > 0){
			$(this).css("border-bottom","1px solid #bed62f");
		}
	});
	
	/**
	 * Gray sidebar container
	 */
	var sidebarCounter = 1;
	$("#sidebar .widget_text").each(function(){
	
		if (sidebarCounter % 2 == 0){
			$(this).removeClass("widget_text").addClass("widget_text_green");
		}
	
		sidebarCounter++;
	});
	
	/**
	 * Update uBillboards read more link
	 * This part has been removed, since modifications have been hardcoded into the module
	 */
	//$(".read-more").css("background-color","#AFC700").html("<div style='white-space:no-wrap;'>L&aelig;s&nbsp;mere</div>");
	
});
