$(document).ready(function () {
	
});

$(document).ready(function() {
	$('#theChat').draggable();
	$('#viewChat').click(function(){
		if($('#theChat').css('top') == '-1000px')
		{
			$('#theChat').css({'top' : '100px'});
		}else {
			$('#theChat').css({'top' : '-1000px'});
		}
	});
	$('#colspan').click(function() {
		$('#theChat').css({'top' : '-1000px'});
	});
});
