function stop()
{
	window.clearTimeout(timer);
	document.title = 'GK.nl';
}
  $(document).ready(function(){
            
            
            
            
            
            
            
            $('#msg1').notificationmsg({period: 2500});
            
            
            $('#closebutton').click(function(){ 
            	stop();
            	$('#msg1').notificationmsg('hide'); 
            });
            $('#closebutton2').click(function(){ $('#msg2').notificationmsg('hide');stop(); });
            
            $("#player_div").empty();
            popup_online();
            setInterval('popup_online()', 15000)
        });

function popup_online()
{
    //$('#msg1').notificationmsg('show');
    var animStyle = 'slidethru';
    $.getJSON("cmsdata/modules/forum/msn_data.php",function(data2)
      {
	       
          if(data2.online==1)
	        {
	          	
              $("#modalbody1").html('<img height="50" width="50" src="http://www.gk.nl/cmsdata/modules/forum/avatar_pinfo.php?id='+data2.uid+'&foto=1" align="left">'+data2.username+' heeft zich zojuist aangemeld<br><br>');
						  $('#msg1').notificationmsg({animation:animStyle});
						  $('#msg1').notificationmsg({period: 2500});
						  $('#msg1').notificationmsg('show');
	        }
	        
	    }
    ); 
        	
}
