﻿function hover(ob){
	var bg = document.getElementById(ob).style.backgroundImage;
}

function newsArchivePaging(){
	var pages = $('.newsArchivePaging a').size();
	
	if(pages > 15){
		$('.newsArchivePaging').css('width','340px');
		$('.newsArchivePaging').children().css('width','20px');
		$('.pageBack').css({'width':'5px', 'margin':'0 4px 0 0'});
		$('.pageForward').css({'width':'5px', 'margin':'0'});
	}
}

function encode(){
	$('.vCard').each(function(){
		var vCard = $(this).attr('href');	
		var oeEscape = vCard.replace('&#248;', '%F8');
		var OEEscape = oeEscape.replace('&#216;', '%D8');
		var aeEscape = OEEscape.replace('&#230;', '%E6');
		var AEEscape = aeEscape.replace('&#198;', '%C6');
		var aaEscape = AEEscape.replace('&#229;', '%E5');
		var AAEscape = aaEscape.replace('&#197;', '%C5');		
		$(this).attr('href',AAEscape);
	});
}

// Fjerner radio buttions ved afstemnninger der er afsluttede
$(document).ready(function() {
	$('.pollAnswers tbody tr td:nth-child(1)').remove();
	$('.newsArchiveSearchBtn').bind('click', function() {
		var newsYear = $('div.newsDropDownYear select.std').attr('value');
		var newsMonth = $('div.newsDropDownMonth select.std').attr('value');
		window.location = '/Default.aspx?ID=51&PID=769&Action=0&year='+newsYear+'&month='+newsMonth;
	});
	newsArchivePaging();
	
});