jQuery(document).ready(function(){
   jQuery('#showchat').click(function()
   {
      if(jQuery('#popup_livechat').css('display')=="none")
        jQuery('#popup_livechat').fadeIn('fast');
      else
        jQuery('#popup_livechat').fadeOut('fast');
   });
});
