if( jQuery('#call_code') != null) {
	function jsonCallCode() {	
		jQuery.getJSON('/callcode/callcode.json.php', {},  
				function setCallCode(json) {
			 		if (json.callCode.code != undefined) {
			 			jQuery('#call_code').html(json.callCode.code);
					}
				}		
		); 			
	}
	setTimeout("jsonCallCode();",5000);	
}
