// ---------------------------------------------------------------------------------------------- \\
// Jquery init event
// ---------------------------------------------------------------------------------------------- \\
$(document).ready(function()
{	
	// keywordAdLinks is defined in gestion.liens-sponsorises.php
	AjaxGetAdLinksData("#ad_links_block_01 .ctnt");
});


// ----------------------------------------------------- \\
// This function gets for each item that contains comments
// the number of comments and the url where to read them
// ----------------------------------------------------- \\
function AjaxGetAdLinksData(destinationSelector)
{			
	var dest = $(destinationSelector);
	var allstyle = new Array("1","2","3","4","5","6","7","8","9","10");
	var itemKeyword = "";
	var randvalue = "";
	var myclass = "";
	
    jQuery.each(dataYahoo, function()
	{
		// Gets the data
		itemKeyword = this;
		
		// Couleur du lien
		randvalue = Math.floor(Math.random()*allstyle.length);
		myclass = 'style'+allstyle[randvalue];
		allstyle.splice(randvalue, 1);
		
		// Builds the item HTML Block
		var newItem = '';				
		newItem = '<a href="http://recherche-yahoo.'+ftvi_portail+'.fr/index-fr.php?searchmode=linkspotssearch&amp;KEYWORDS='+itemKeyword+'" class="'+myclass+' keywords">'+itemKeyword+'</a>';
		
		// Append data to the container
		dest.append(newItem);
	});
}
