// WYSIWYG Content Box
$(function()
{
    $('#blog_content').wysiwyg();
	meerkat({
	  close: '.close',
	  dontShow: '#dontshow-meerkat',
	  dontShowExpire: 0.5,
	  animation: 'slide',
	  animationSpeed: 500,
	  dontShowExpire: 0.5,
	  meerkatPosition: 'bottom',
	  background: '#000',
	  height: '50px'
	});
});

// Admin panel session form
function toggle_trainer( client, root ) {
	
		xmlHttp=GetXmlHttpObject();
		var url=root+"_layout/ajax/toggle.php";
		url=url+"?client="+escape(client);
		url=url+"&sid="+Math.random();
		xmlHttp.onreadystatechange=clientChanged;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}
	
	function clientChanged()
	{
	
		document.getElementById( "trainer" ).value = xmlHttp.responseText;

	}
	
	function GetXmlHttpObject()
	{
		var xmlHttp=null;
		try	{
			xmlHttp=new XMLHttpRequest();
			}
	
		catch(e)
		{
			try	{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
				}
				
			catch(e)
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
	
		return xmlHttp;
	
	}