var theHandle, theRoot;
var thumbTravel, ratio;

window.onload = function() {
	
}

function hidechat()
{
document.getElementById('root').style.display = 'none';
}
function showchat()
{
document.getElementById('root').style.display = 'block';
theHandle = document.getElementById("handle");
	theRoot   = document.getElementById("root");
	Drag.init(theHandle, theRoot);
	
}
