GUIDE
					- Left-click and drag the background to move the graph
- Left-click and drag the nodes to reorganize
- Left-click a node to view first level connections
- Double left-click a node to navigate to its page
- Double left-click the background to zoom in
- Right-click the background to zoom out
					// graph team
sigma.utils.pkg('sigma.canvas.nodes');
sigma.canvas.nodes.image = (function() {
  var _cache = {},
      _loading = {},
      _callbacks = {};
  // Return the renderer itself:
  var renderer = function(node, context, settings) {
    var args = arguments,
        prefix = settings('prefix') || '',
        size = node[prefix + 'size'],
        color = node.color || settings('defaultNodeColor'),
        url = node.url;
    if (_cache[url]) {
      context.save();
      // Draw the clipping disc:
      context.beginPath();
      context.arc(
        node[prefix + 'x'],
        node[prefix + 'y'],
        node[prefix + 'size'],
        0,
        Math.PI * 2,
        true
      );
      context.closePath();
      context.clip();
      // Draw the image
      context.drawImage(
        _cache[url],
        node[prefix + 'x'] - size,
        node[prefix + 'y'] - size,
        2 * size,
        2 * size
      );
      // Quit the "clipping mode":
      context.restore();
      // Draw the border:
      context.beginPath();
      context.arc(
        node[prefix + 'x'],
        node[prefix + 'y'],
        node[prefix + 'size'],
        0,
        Math.PI * 2,
        true
      );
      context.lineWidth = 1;
      context.strokeStyle = node.color || settings('defaultNodeColor');
      context.stroke();
    } else {
      sigma.canvas.nodes.image.cache(url);
      sigma.canvas.nodes.def.apply(
        sigma.canvas.nodes,
        args
      );
    }
  };
  // Let's add a public method to cache images, to make it possible to
  // preload images before the initial rendering:
  renderer.cache = function(url, callback) {
    if (callback)
      _callbacks[url] = callback;
    if (_loading[url])
      return;
    var img = new Image();
    img.onload = function() {
      _loading[url] = false;
      _cache[url] = img;
      if (_callbacks[url]) {
        _callbacks[url].call(this, img);
        delete _callbacks[url];
      }
    };
    _loading[url] = true;
    img.src = url;
  };
  return renderer;
})();
var i,
    s,
    o,
    offset_left = 0.5,
    N = 1,
    E = 40,
    C = 5,
    d = 0.5,
    cs = [],
    g = {
      nodes: [],
      edges: []
    };
if (!sigma.classes.graph.hasMethod('neighbors')){
sigma.classes.graph.addMethod('neighbors', function(nodeId) {
    var k,
        neighbors = {},
        index = this.allNeighborsIndex[nodeId] || {};
    for (k in index)
      neighbors[k] = this.nodesIndex[k];
    return neighbors;
  });
  }
//adding the central node
g.nodes.push({
	id: 6107,
	label: 'Individualité Microbienne et Infection',
    type: 'image',
    url: 'https://research.pasteur.fr/wp-content/uploads/2016/09/research.pasteur.fr_m.tuberculosis_metabolicreporter_mergedfluorescenceimage-3-150x150.jpg',
    x: 0,
    y: 0,
	size: 30,
	color: '#DDDDDD'
});
N=8
var x_node = Math.cos(2 * 0 * Math.PI / N) * 2;
var y_node = Math.sin(2 * 0 * Math.PI / N) * 2;
var biggest_node_size = 0;
	//check if content already exist
	
		x_site = Math.cos(2 * 0 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 0 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 7719,
			label: 'Nicolas Gangneux',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_ha24-150x150.jpg',
		    page_url: 'https://research.pasteur.fr/fr/member/nicolas-gangneux/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 61077719,
      size: 0.5,
      source: 6107,
      target: 7719    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 1 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 1 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 4353,
			label: 'Mena Cimino',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_cimino-150x150.jpeg',
		    page_url: 'https://research.pasteur.fr/fr/member/mena-cimino/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 61074353,
      size: 0.5,
      source: 6107,
      target: 4353    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 2 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 2 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 223899,
			label: 'Olivia Gardette',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enolivia-gardettefrolivia-gardette-olivia-gardette-jpg-150x150.jpg',
		    page_url: 'https://research.pasteur.fr/fr/member/olivia-gardette/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 6107223899,
      size: 0.5,
      source: 6107,
      target: 223899    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 3 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 3 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 180377,
			label: 'Tri Tho Nguyen',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-tri-tho-nguyen-img-0867-150x150.jpg',
		    page_url: 'https://research.pasteur.fr/fr/member/tri-tho-nguyen/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 6107180377,
      size: 0.5,
      source: 6107,
      target: 180377    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 4 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 4 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 235789,
			label: 'Elodie Paulet',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2024/12/research_pasteur-enelodie-paulet-frelodie-paulet-photo-elodie-paulet-150x150.jpg',
		    page_url: 'https://research.pasteur.fr/fr/member/elodie-paulet/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 6107235789,
      size: 0.5,
      source: 6107,
      target: 235789    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 5 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 5 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 237245,
			label: 'Margaux Pillon',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2025/01/research_pasteur-enmargaux-pillonfrmargaux-pillon-sans-titre-150x150.jpeg',
		    page_url: 'https://research.pasteur.fr/fr/member/margaux-pillon/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 6107237245,
      size: 0.5,
      source: 6107,
      target: 237245    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 6 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 6 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 245366,
			label: 'Virginia Pichler',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2025/06/research_pasteur-virginia-pichler-img-8913-2-150x150.jpg',
		    page_url: 'https://research.pasteur.fr/fr/member/virginia-pichler/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 6107245366,
      size: 0.5,
      source: 6107,
      target: 245366    });
			
	//check if content already exist
	
		x_site = Math.cos(2 * 7 * Math.PI / N) * 2;
		y_site = Math.sin(2 * 7 * Math.PI / N) * 2;
		// adding site
		g.nodes.push({
			id: 6368,
			label: 'Giulia Manina',
		    type: 'image',
		    url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-giulia-manina-giulia-manina-150x150.jpg',
		    page_url: 'https://research.pasteur.fr/fr/member/giulia-manina/',
		    x: x_site,
		    y: y_site,
			size: 16,
			color: '#DDDDDD'
		});
    
	//link to content
    g.edges.push({
      id: 61076368,
      size: 0.5,
      source: 6107,
      target: 6368    });
			
// update positions
x_node = Math.cos(2 * 0 * Math.PI / N) * 10;
y_node = Math.sin(2 * 0 * Math.PI / N) * 10;
N=14
	// adding node
	var x_node = Math.cos(2 * 0 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 0 * Math.PI / N) * 10;
	g.nodes.push({
		id: 158419,
		label: 'PROGRAM_PROJECT: Maladies Infectieuses Emergentes',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2021/05/research_pasteur-enemerging-infectious-diseasesfrmaladies-infectieuses-emergentes-institutpasteur-i038212-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/program_project/emerging-infectious-diseases/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 6107158419,
      size: 0.5,
      source: 6107,
      target: 158419    });
	
	
	
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4171,
					label: 'Caroline Demangel',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-caroline-demangel-id-caro2-2018-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/caroline-demangel/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 1584194171,
		      	size: 0.5,
		      	source: 158419,
		      	target: 4171		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 2624,
					label: 'Arnaud Fontanet',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_arnaud-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/arnaud-fontanet/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 1584192624,
		      	size: 0.5,
		      	source: 158419,
		      	target: 2624		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 1 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 1 * Math.PI / N) * 10;
	g.nodes.push({
		id: 87040,
		label: 'EVENT: Microfluidics Club at Pasteur Third Seminar: Dr. Gilgueng HWANG',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: '',
	    page_url: 'https://research.pasteur.fr/fr/event/microfluidics-club-at-pasteur-third-seminar-dr-gilgueng-hwang/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610787040,
      size: 0.5,
      source: 6107,
      target: 87040    });
	
	
	
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 870406368,
		      	size: 0.5,
		      	source: 87040,
		      	target: 6368		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 2 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 2 * Math.PI / N) * 10;
	g.nodes.push({
		id: 80943,
		label: 'PROGRAM_PROJECT: Résistance aux agents antimicrobiens',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2017/02/research_pasteur-enantimicrobial-resistance-frresistance-aux-agents-antimicrobiens-institutpasteur-34753-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/program_project/antimicrobial-resistance/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610780943,
      size: 0.5,
      source: 6107,
      target: 80943    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 161202,
					label: 'Emilie Boutet',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-emilie-boutet-essai-jpeg-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/emilie-boutet/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 80943161202,
		      	size: 0.5,
		      	source: 80943,
		      	target: 161202		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 95915,
					label: 'Paola Arimondo',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/10/research_pasteur-p-arimondo_5757-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/paola-arimondo/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 8094395915,
		      	size: 0.5,
		      	source: 80943,
		      	target: 95915		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 7209,
					label: 'Philippe Glaser',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_ha41-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/philippe-glaser/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809437209,
		      	size: 0.5,
		      	source: 80943,
		      	target: 7209		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 7850,
					label: 'Fabrice Agou',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_image010-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/fabrice-agou/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809437850,
		      	size: 0.5,
		      	source: 80943,
		      	target: 7850		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4255,
					label: 'Anna-Bella Failloux',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-anna-bella-failloux-bella-e1761045402861-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/anna-bella-failloux/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809434255,
		      	size: 0.5,
		      	source: 80943,
		      	target: 4255		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4447,
					label: 'Thierry Fontaine',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-20190614_185922_crop-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/thierry-fontaine/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809434447,
		      	size: 0.5,
		      	source: 80943,
		      	target: 4447		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4541,
					label: 'Didier Mazel',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-didier-mazel-img-6478-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/didier-mazel/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809434541,
		      	size: 0.5,
		      	source: 80943,
		      	target: 4541		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 95085,
					label: 'Didier Ménard',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/12/research_pasteur-92a3510-5-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/didier-menard/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 8094395085,
		      	size: 0.5,
		      	source: 80943,
		      	target: 95085		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 8485,
					label: 'Lulla Opatowski',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/01/research.pasteur.fr_photolulla4-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/lulla-opatowski/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809438485,
		      	size: 0.5,
		      	source: 80943,
		      	target: 8485		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4724,
					label: 'Félix A. Rey',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-enfelix-a-reyfrfelix-rey-portrait-felixrey-1-150x150.jpeg',
		    		page_url: 'https://research.pasteur.fr/fr/member/felix-rey/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 809434724,
		      	size: 0.5,
		      	source: 80943,
		      	target: 4724		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 81199,
					label: 'Kathleen Victoir',
		    		type: 'image',
		    		url: '',
		    		page_url: 'https://research.pasteur.fr/fr/member/kathleen-victoir/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 8094381199,
		      	size: 0.5,
		      	source: 80943,
		      	target: 81199		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 3 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 3 * Math.PI / N) * 10;
	g.nodes.push({
		id: 79846,
		label: 'EVENT: Cell Biology and Infection Day – December 1, 2016 Institut Pasteur, Paris, France Amphithéâtre Duclaux',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2016/11/research.pasteur.fr_bci-day_advertisement-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/event/cell-biology-and-infection-day-december-1-2016-institut-pasteur-paris-france-amphitheatre-duclaux/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610779846,
      size: 0.5,
      source: 6107,
      target: 79846    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4987,
					label: 'Chiara Zurzolo',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-chiara-zurzolo-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/chiara-zurzolo/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 798464987,
		      	size: 0.5,
		      	source: 79846,
		      	target: 4987		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 798466368,
		      	size: 0.5,
		      	source: 79846,
		      	target: 6368		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4242,
					label: 'Patricia Latour-Lambert',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_latourlambert-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/patricia-latour-lambert/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 798464242,
		      	size: 0.5,
		      	source: 79846,
		      	target: 4242		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4247,
					label: '',
		    		type: 'image',
		    		url: '',
		    		page_url: '',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 798464247,
		      	size: 0.5,
		      	source: 79846,
		      	target: 4247		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 4 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 4 * Math.PI / N) * 10;
	g.nodes.push({
		id: 78595,
		label: 'EVENT: Microfluidic Large-Scale Integration Applied to Molecular Diagnostics. Prof. Sebastian MAERKL (EPFL)',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: '',
	    page_url: 'https://research.pasteur.fr/fr/event/microfluidic-large-scale-integration-applied-to-molecular-diagnostics-prof-sebastian-maerkl-epfl/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610778595,
      size: 0.5,
      source: 6107,
      target: 78595    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 6834,
					label: 'Samy Gobaa',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-samy-gobaa-gobaa-samy-1510-e1634550888980-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/samy-gobaa/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 785956834,
		      	size: 0.5,
		      	source: 78595,
		      	target: 6834		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 785956368,
		      	size: 0.5,
		      	source: 78595,
		      	target: 6368		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 5 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 5 * Math.PI / N) * 10;
	g.nodes.push({
		id: 60105,
		label: 'EVENT: EMBO Conference Tuberculosis 2016',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2016/03/research.pasteur.fr_tuberculosis2016-web-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/event/embo-conference-tuberculosis-2016/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610760105,
      size: 0.5,
      source: 6107,
      target: 60105    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 3992,
					label: 'Roland Brosch',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/12/research.pasteur.fr_roland1-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/roland-brosch/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601053992,
		      	size: 0.5,
		      	source: 60105,
		      	target: 3992		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 2487,
					label: 'Pedro Alzari',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/03/palzari-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/pedro-alzari/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601052487,
		      	size: 0.5,
		      	source: 60105,
		      	target: 2487		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 3993,
					label: 'Laleh Majlessi',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/12/research_pasteur-photo-lm-150x150.png',
		    		page_url: 'https://research.pasteur.fr/fr/member/laleh-majlessi/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601053993,
		      	size: 0.5,
		      	source: 60105,
		      	target: 3993		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 3915,
					label: 'Marco Bellinzoni',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-marco-bellinzoni-img-0074-2-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/marco-bellinzoni/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601053915,
		      	size: 0.5,
		      	source: 60105,
		      	target: 3915		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601056368,
		      	size: 0.5,
		      	source: 60105,
		      	target: 6368		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4351,
					label: 'Ludovic Tailleux',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_ludovic-150x150.jpeg',
		    		page_url: 'https://research.pasteur.fr/fr/member/ludovic-tailleux/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601054351,
		      	size: 0.5,
		      	source: 60105,
		      	target: 4351		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 3995,
					label: 'Roxane Simeone',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_20151029mip_7088-3-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/roxane-simeone/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601053995,
		      	size: 0.5,
		      	source: 60105,
		      	target: 3995		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4009,
					label: 'Carmen Buchrieser',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_carmen1-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/carmen-buchrieser/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 601054009,
		      	size: 0.5,
		      	source: 60105,
		      	target: 4009		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 6 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 6 * Math.PI / N) * 10;
	g.nodes.push({
		id: 40155,
		label: 'PROJECT: Impact of the host on microbial individuality',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_thp1_gmt17_calcitriol_09_r3d_fus_cpy-1-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/project/impact-of-the-host-on-microbial-individuality/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610740155,
      size: 0.5,
      source: 6107,
      target: 40155    });
	
	
	
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 7719) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401557719,
		      	size: 0.5,
		      	source: 40155,
		      	target: 7719		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 40129,
					label: 'Gwenn Ratet',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_gwenn-ratet-picture-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/gwendoline-ratet/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 4015540129,
		      	size: 0.5,
		      	source: 40155,
		      	target: 40129		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401556368,
		      	size: 0.5,
		      	source: 40155,
		      	target: 6368		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 7 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 7 * Math.PI / N) * 10;
	g.nodes.push({
		id: 40153,
		label: 'PROJECT: DNA damage response',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_mycobacterium-smegmatis-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/project/dna-damage-response/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610740153,
      size: 0.5,
      source: 6107,
      target: 40153    });
	
	
	
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401536368,
		      	size: 0.5,
		      	source: 40153,
		      	target: 6368		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 8 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 8 * Math.PI / N) * 10;
	g.nodes.push({
		id: 40122,
		label: 'PROJECT: Molecular markers for cell quiescence',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_m.tuberculosis_stationaryphase-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/project/molecular-markers-for-cell-quiescence/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610740122,
      size: 0.5,
      source: 6107,
      target: 40122    });
	
	
	
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 7719) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401227719,
		      	size: 0.5,
		      	source: 40122,
		      	target: 7719		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 40129) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 4012240129,
		      	size: 0.5,
		      	source: 40122,
		      	target: 40129		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401226368,
		      	size: 0.5,
		      	source: 40122,
		      	target: 6368		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 9 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 9 * Math.PI / N) * 10;
	g.nodes.push({
		id: 40112,
		label: 'PROJECT: Single-cell gene expression dynamics',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_mycobacterium-smagmatis_rna-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/project/single-cell-gene-expression-dynamics/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610740112,
      size: 0.5,
      source: 6107,
      target: 40112    });
	
	
	
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 7719) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401127719,
		      	size: 0.5,
		      	source: 40112,
		      	target: 7719		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 6368) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 401126368,
		      	size: 0.5,
		      	source: 40112,
		      	target: 6368		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 10 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 10 * Math.PI / N) * 10;
	g.nodes.push({
		id: 21589,
		label: 'PROGRAM_PROJECT: L’institut Carnot Pasteur Microbes et Santé',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_bac-culture-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/program_project/ms-carnot/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610721589,
      size: 0.5,
      source: 6107,
      target: 21589    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 118894,
					label: 'Marion Le Foll',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-marion-le-foll-photo-portrait-150x150.jpeg',
		    		page_url: 'https://research.pasteur.fr/fr/member/marion-le-foll/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 21589118894,
		      	size: 0.5,
		      	source: 21589,
		      	target: 118894		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 148720,
					label: 'Iman Wanis',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-iman-wanis-photo-big-1-e1617484578611-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/fr-iman-wanis/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 21589148720,
		      	size: 0.5,
		      	source: 21589,
		      	target: 148720		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 388,
					label: 'Jean-Christophe Olivo-Marin',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2025/02/research_pasteur-jcom2022-s-jcom2022-s-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/jean-christophe-olivo-marin/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 21589388,
		      	size: 0.5,
		      	source: 21589,
		      	target: 388		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 7071,
					label: 'Isabelle Buckle',
		    		type: 'image',
		    		url: '',
		    		page_url: 'https://research.pasteur.fr/fr/member/isabelle-buckle/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215897071,
		      	size: 0.5,
		      	source: 21589,
		      	target: 7071		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4107,
					label: 'Christophe D’Enfert',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/denfert_0-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/christophe-denfert/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215894107,
		      	size: 0.5,
		      	source: 21589,
		      	target: 4107		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 58995,
					label: 'Mallory Perrin-Wolff',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/05/research_pasteur-mallory-perrin-wolff-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/mallory-perrin-wolff/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 2158958995,
		      	size: 0.5,
		      	source: 21589,
		      	target: 58995		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 4987) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215894987,
		      	size: 0.5,
		      	source: 21589,
		      	target: 4987		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4977,
					label: 'Christophe Zimmer',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-christophe-zimmer-chz-photo-resized-bw-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/christophe-zimmer/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215894977,
		      	size: 0.5,
		      	source: 21589,
		      	target: 4977		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 103214,
					label: 'Frédéric Barras',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2018/04/research_pasteur-f-barras-1-150x150.png',
		    		page_url: 'https://research.pasteur.fr/fr/member/frederic-barras/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 21589103214,
		      	size: 0.5,
		      	source: 21589,
		      	target: 103214		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4109,
					label: 'Guilhem Janbon',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/10/research_pasteur-img_0255r-2-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/guilhem-janbon/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215894109,
		      	size: 0.5,
		      	source: 21589,
		      	target: 4109		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4848,
					label: 'Gérald Spaeth',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research_pasteur-gerald-spaeth-portrait-gfs-1-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/gerald-spaeth/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215894848,
		      	size: 0.5,
		      	source: 21589,
		      	target: 4848		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4920,
					label: 'Sylvie van Der Werf',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/07/research_pasteur-photo_sylvie-vdw1-150x150.png',
		    		page_url: 'https://research.pasteur.fr/fr/member/sylvie-van-der-werf/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 215894920,
		      	size: 0.5,
		      	source: 21589,
		      	target: 4920		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 11 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 11 * Math.PI / N) * 10;
	g.nodes.push({
		id: 14686,
		label: 'PROGRAM_PROJECT: Labex IBEID – Integrative Biology of Emerging Infectious Diseases',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_labex-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/program_project/integrative-biology-of-emerging-infectious-diseases/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610714686,
      size: 0.5,
      source: 6107,
      target: 14686    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 203306,
					label: 'Cyril Renassia',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-cyril-renassia-photo-cv-2023-cropped-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/cyril-renassia/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 14686203306,
		      	size: 0.5,
		      	source: 14686,
		      	target: 203306		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 3949,
					label: 'Philippe Bastin',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_philippe_bastin-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/philippe-bastin/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 146863949,
		      	size: 0.5,
		      	source: 14686,
		      	target: 3949		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4775,
					label: 'Carla Saleh',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_ha68-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/carla-saleh/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 146864775,
		      	size: 0.5,
		      	source: 14686,
		      	target: 4775		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 12 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 12 * Math.PI / N) * 10;
	g.nodes.push({
		id: 15,
		label: 'DEPARTMENT: Biologie cellulaire et infection',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2014/09/research_pasteur-encell-biology-amp-infectionfrbiologie-cellulaire-et-infection-bandeau-dpt-bci-institutpasteur-13357-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/department/cell-biology-infection/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610715,
      size: 0.5,
      source: 6107,
      target: 15    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 107500,
					label: 'Gessyca Geoffroy',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2018/05/research_pasteur-engessyca-geoffroyfrgessyca-geoffroy-photo-annuaire-pasteur-1-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/gessyca-geoffroy/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 15107500,
		      	size: 0.5,
		      	source: 15,
		      	target: 107500		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 40239,
					label: 'Cécile Peltekian',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research_pasteur-cecile-peltekian-cecile-photojpg-150x150.jpeg',
		    		page_url: 'https://research.pasteur.fr/fr/member/cecile-peltekian/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 1540239,
		      	size: 0.5,
		      	source: 15,
		      	target: 40239		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 51154,
					label: 'Guillaume Dumenil',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_research.pasteur.fr_fig101-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/guillaume-dumenil/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 1551154,
		      	size: 0.5,
		      	source: 15,
		      	target: 51154		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 83816,
					label: 'Thomas Wollert',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2017/01/research.pasteur.fr_portrait-cover-image-1-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/thomas-wollert/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 1583816,
		      	size: 0.5,
		      	source: 15,
		      	target: 83816		    	});
	
								
			
	
	
	// adding node
	var x_node = Math.cos(2 * 13 * Math.PI / N) * 10;
	var y_node = Math.sin(2 * 13 * Math.PI / N) * 10;
	g.nodes.push({
		id: 22,
		label: 'DEPARTMENT: Microbiologie',
	    x: x_node,
	    y: y_node,
	    type: 'image',
	    url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_microbiology-150x150.jpg',
	    page_url: 'https://research.pasteur.fr/fr/department/microbiology/',
		size: 24,
		color: '#DDDDDD'
	});
	//link content to central post
    g.edges.push({
      id: 610722,
      size: 0.5,
      source: 6107,
      target: 22    });
	
	
	
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 249441,
					label: 'Mélodie Birepinte',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2025/09/research_pasteur-melodie-birepinte-image1-150x150.jpeg',
		    		page_url: 'https://research.pasteur.fr/fr/member/melodie-birepinte/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 22249441,
		      	size: 0.5,
		      	source: 22,
		      	target: 249441		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 250083,
					label: 'Yohan Rigot',
		    		type: 'image',
		    		url: '',
		    		page_url: 'https://research.pasteur.fr/fr/member/yohan-rigot/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 22250083,
		      	size: 0.5,
		      	source: 22,
		      	target: 250083		    	});
	
								
			
					//check if content already exist
				
				// update node size depending on the amount of edges
				g.nodes.forEach(function(n) {
					if (n.id == 103214) {
						n.size = n.size + 10;
						if ( n.size > biggest_node_size ){
							biggest_node_size = n.size;
						}
					}
				});
	
				g.nodes.forEach(function(n) {
					if (n.id == 6107) {
						if ( n.size < biggest_node_size ){
							n.size = biggest_node_size;
						}
					}
				});
	
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 22103214,
		      	size: 0.5,
		      	source: 22,
		      	target: 103214		    	});
	
								
			
					//check if content already exist
							
				
				if (x_node<0){
					x_site = x_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					x_site = x_node + ((Math.random() * 2)-1) + offset_left;
				}
	
				if (y_node<0){
					y_site = y_node + ((Math.random() * 2)-1) - offset_left;
				}else{
					y_site = y_node + ((Math.random() * 2)-1) + offset_left;
				}
	
	
				// adding site
				g.nodes.push({
					id: 4214,
					label: 'Bruno Dupuy',
		    		type: 'image',
		    		url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_bruno_id-150x150.jpg',
		    		page_url: 'https://research.pasteur.fr/fr/member/bruno-dupuy/',
		    		x: x_site,
		    		y: y_site,
					size: 10,
					color: '#DDDDDD'
				});
				
	
	    		
	    		//link to content
		    	g.edges.push({
		      	id: 224214,
		      	size: 0.5,
		      	source: 22,
		      	target: 4214		    	});
	
								
			
	
	
var s = new sigma({
  //container: document.getElementById('graph-main'),
  graph: g,
  renderer: {
    // IMPORTANT:
    // This works only with the canvas renderer, so the
    // renderer type set as "canvas" is necessary here.
    container: document.getElementById('graph-main'),
    type: 'canvas'
  },
  settings: {
    minNodeSize: 12,
    maxNodeSize: 30,
    mouseWheelEnabled: false,
    font: 'Montserrat',
    labelThreshold:25,
    borderSize:1,
    defaultNodeBorderColor: '#333',
    sideMargin:25,
  }
});
// We first need to save the original colors of our
// nodes and edges, like this:
s.graph.nodes().forEach(function(n) {
	n.originalColor = n.color;
	//console.log(n.id);
	//console.log(s.graph.nodes(n.id));
});
s.graph.edges().forEach(function(e) {
	e.originalColor = e.color;
});
// When a node is clicked, we check for each node
// if it is a neighbor of the clicked one. If not,
// we set its color as grey, and else, it takes its
// original color.
// We do the same for the edges, and we only keep
// edges that have both extremities colored.
s.bind('clickNode', function(e) {
	var nodeId = e.data.node.id,
	    toKeep = s.graph.neighbors(nodeId);
	toKeep[nodeId] = e.data.node;
	s.graph.nodes().forEach(function(n) {
	  if (toKeep[n.id])
	    n.color = '#35a9f5';
	  else
	    n.color = '#dddddd';
	});
	s.graph.edges().forEach(function(e) {
	  if (toKeep[e.source] && toKeep[e.target])
	    e.color = '#35a9f5';
	  else
	    e.color = '#dddddd';
	});
	// Since the data has been modified, we need to
	// call the refresh method to make the colors
	// update effective.
	s.refresh();
});
// When the stage is clicked, we just color each
// node and edge with its original color.
s.bind('clickStage', function(e) {
	s.graph.nodes().forEach(function(n) {
	  n.color = n.originalColor;
	});
	s.graph.edges().forEach(function(e) {
	  e.color = e.originalColor;
	});
	// Same as in the previous event:
	s.refresh();
});
s.bind("doubleClickNode", function (e) {
	$("#canvas-wrap, .sigma-scene, .sigma-mouse").val();
	ajax_load_page( e.data.node.page_url );
});
var c = s.camera;
s.bind("rightClickStage", function (e) {
	sigma.misc.animation.camera(c, {
	  ratio: c.ratio * c.settings('zoomingRatio')
	}, {
	  duration: 200
	});
});
// Configure the noverlap layout:
var noverlapListener = s.configNoverlap({
  nodeMargin: 10,
  scaleNodes: 0.3,
  gridSize: 1,
  easing: 'quadraticInOut', // animation transition function
  duration: 4000   // animation duration. Long here for the purposes of this example only
});
// Bind the events:
noverlapListener.bind('start stop interpolate', function(e) {
  //console.log(e.type);
  if(e.type === 'start') {
    //console.time('noverlap');
  }
  if(e.type === 'interpolate') {
    //console.timeEnd('noverlap');
  }
});
// Start the layout:
s.startNoverlap();
//s.refresh();
// Initialize the dragNodes plugin:
var dragListener = sigma.plugins.dragNodes(s, s.renderers[0]);
dragListener.bind('startdrag', function(event) {
});
dragListener.bind('drag', function(event) {
});
dragListener.bind('drop', function(event) {
});
dragListener.bind('dragend', function(event) {
});