﻿$(document).ready(function() {

	// on recupere les donnees du tableau JS
	for (var i=0; i<tx_oncdfcd.length; i++)
	{
		var name =tx_oncdfcd[i]['name'];
		var uid =tx_oncdfcd[i]['uid'];

		var posx=tx_oncdfcd[i]['position_x'];
		var posy = tx_oncdfcd[i]['position_y'];
		
		if(posx && posy)
		{
			x = parseInt(posx) - tx_oncdfcd_pictogramme['width']/2;
			y = parseInt(posy) - tx_oncdfcd_pictogramme['height']/2 + 6;

			$('#image_parente').prepend('<a href="'+tx_oncdfcd[i]['link']+'"><img src="../uploads/tx_oncdfcd/'+tx_oncdfcd_pictogramme['name_on']+'" title="'+name+'" style="position:absolute;top:'+y+'px;left:'+x+'px;" name="image_'+uid+'" class="current" alt="'+name+'" /></a>');
		}
	}
});

