// LIVE CHAT DETECTION v1.0
// Andrew Ellis
// 19th November 2009

$(function(){
	
	// detect the size of the img being displayed from clickforassistance
	var chatImgWidth = $("#liveChat-image").width();
	
	// if the image is 1px in width then we know live chat is not active. If it is greater display the large image
	if (chatImgWidth >= 190) {	
		//alert("LIVE CHAT - ACTIVE");	
		$('#liveChat-image').css('visibility','visible');
		$('#liveChat-container').css('display','block');
		$('#chat-community, #chat-community-bullets').css('display','none');
	} else {
		//alert("LIVE CHAT - INACTIVE");	
		$('#liveChat-container').css('display','none');
		$('#chat-community, #chat-community-bullets').css('display','block');
	};
	
});