$(document).ready(function() {
	
	$.getJSON('/js/ts/header_message.ajax', function(json) {
		
		if (json['time_left'] != null && json['id'] != null && json['topic'] != null) { //active chat running
		if (json['id']){
			$('.top_speach_bubble').css('background-image', 'url("/js/ts/topmessage_image.ajax?position=1&type=2")');
			
			message = 'Ask Tommy a question now on '+json['topic']+'. Web chat ends in '+json['time_left']+', come and join the get together now!';
			$('#ask_tommy_message_box').css('display', 'block');
			$('#ask_tommy_message_box').html(message);
			$('#ask_tommy_message_link').css('display', 'block');
			$('#ask_tommy_message_link').attr('href', '/secrets/ask-tommy-chat.php?s_id='+json['id']); }			
			
		}else{
			$('.top_speach_bubble').css('background-image', 'url("/topmessage_image.php?position=1&type=1")');			
		}		
	});
});
