function init_lang() {
	$(".lang").click(function(){
		send_l( {l:$(this).attr("id")} ,"language.php");
	});
}

function send_l(data,url) {
	$.ajax({
		type: 'POST',
		url: "resources/"+url,
		data: data,
		success: function(data) {
			repage(data);
		}
	});
}

function repage(l) {
	if(l == "se") {
		location.reload();
	} else {
		window.location = "rottneros/index/?sida=startsida";
	}
}
