$(document).ready(function()
{
	$.ajax(
	{
		async: false,
		type: 'POST',
		url: '/includes/ajax/ebac_taeller.php',
		dataType: 'json',
		success: function(data, status, xhr)
		{
			if (xhr.status == 200)
			{
				$('.ebac_taeller').html(data.html);
			}
		}
	});

	$.ajax(
	{
		async: false,
		type: 'POST',
		url: '/includes/ajax/ebac_opdateret.php',
		dataType: 'json',
		success: function(data, status, xhr)
		{
			if (xhr.status == 200)
			{
				$('.ebac_opdateret').html(data.html);
			}
		}
	});

	// $('iframe').attr('scrolling', 'no').attr('frameborder', '0').attr('border', '0').iframeAutoHeight({heightOffset: 80});
});
