$(document).ready(function(){

	var language = $("#chat-live").attr("class");
	
	//load up the chat-live / email button
	html = '<img src="http://rs.instantservice.com/resources/smartbutton/6424/' + chatcodes[language].code + '/available.gif?' + Math.floor(Math.random()*10001) + '" style="width:0;height:0;visibility:hidden;position:absolute;" onLoad="agents_available()" onError="agents_not_available()">';
	$("#chat-live").html(html);

});

function agents_available(){
	
	var language = $("#chat-live").attr("class");
	
	$("#chat-live").html('<a href="" onClick="window.open(\'https://www.fxdd.com/'+language+'/live-talk.html\',' + 
	'\'custclient\',\'width=502,height=302,scrollbars=0,resizable=no\');return false;">' + 
	'<img src="/img/' + language + '/chat-live.png" border="0" class="ie"></a>');

	//sets the link in the footer	
	var text = $("#chat-live-footer").text();
	$("#chat-live-footer").html('<a href="" onClick="window.open(\'https://www.fxdd.com/'+language+'/live-talk.html\',' + 
	'\'custclient\',\'width=502,height=302,scrollbars=0,resizable=no\');return false;">' + text + '</a>');
	
	return true;
}

// IF AGENTS ARE NOT AVAILABLE:  
function agents_not_available(){
	
	var language = $("#chat-live").attr("class");
	
	$("#chat-live").html('<a href="" onClick="window.open(\'https://global.fxdd.com/'+language+'/live-talk/away.html\',' + 
	'\'custclient\',\'width=502,height=302,scrollbars=0,resizable=no\');return false;">' + 
	'<IMG SRC="/img/' + language + '/send-email.png" border="0" class="ie"></a>');
	
	//sets the link in the footer
	var text = $("#chat-live-footer").text();
	$("#chat-live-footer").html('<a href="" onClick="window.open(\'https://www.fxdd.com/'+language+'/live-talk/away.html\',' + 
	'\'custclient\',\'width=502,height=302,scrollbars=0,resizable=no\');return false;">' + text + '</a>');

	
	return true;
}

var chatcodes = new Array();
chatcodes["ar"] = {code:26646};
chatcodes["cn"] = {code:26643};
chatcodes["en"] = {code:26650};
chatcodes["fr"] = {code:26647};
chatcodes["de"] = {code:26645};
chatcodes["jp"] = {code:26648};
chatcodes["pt"] = {code:26652};
chatcodes["ru"] = {code:26651};
chatcodes["es"] = {code:26644};
chatcodes["tr"] = {code:26653};
chatcodes["vi"] = {code:26649};