/*global $, window 
*/

(function() {

$(document).ready(function() {
	$("#chat_click").addClass("chatDisabled").click(function() {
		return false;
	});
	
	$.ajax({
		url: "http://webchat.i6beta.inconcertcc.com:80/is_campaign_active?token=FC18D1E89D76D7CAA2DC563A9B03E1C8",
		type: "get",
		dataType: "jsonp",
		success: function(response) {
			if(response.status) {
				$("#chat_click").
					removeClass("chatDisabled").
					addClass("chat").
					unbind("click").
					click(function() {
						window.open(this.href, "chat_window", "menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=yes,status=no,height=500,width=400");
						return false;
					});
			}
		}
	});
});

})();

