/*window.onload = function(){
    var ChatTitle = document.getElementById("ChatTitle");
    ChatTitle.onclick = function()
    {
	showChatWindow();
    };
    document.getElementById("ChatContent").style.display = 'none';
};
 
function showChatWindow(){
    var ChatContent=document.getElementById("ChatContent");
    if (ChatContent.style.display != '')
	{
	    ChatContent.style.display = '';
	}
    else
	{
	    ChatContent.style.display = 'none';
	};
}
*/
$(document).ready(function(){
	$("#smiley-content").css("display","none");
	$("#smiley-title").click(function(){
		$("#smiley-content").slideToggle("slow");
	});
	$("#ChatTitle").click(function(){
		$("#ChatContent").slideToggle("slow");
	});
	
	 
});

