$(document).ready(function(){
	if($('#aktTeplota').length > 0)
	{
		var temperature_interval = setInterval(function(){
			$.get(httpPath + 'ajax/presentation/teplarna/temperature.php', [], function(data){
				if(data != '')
				{
					$('#aktTeplota').html(data);
				}
			});
		}, 60000);
	}
});
