var _url = "http://127.0.0.1/monsite/"
var _homepage = "index.php";
	

function initAjax()
{

	// On test la compatibilite AJAX
	
	if (isAjaxCompatible())	
	{
		
		// C'est compatible :
		
		// je lance l'initialisation de la gestion du bouton precedent
		//bb_init("variable",false);
		
		// je modifie les liens a l'aide de DOM pour mise en oeuvre d'AJAX
		var links = document.getElementsByTagName("a");
		
		for (var i=0;i<links.length;i++)
		{
			
			var tmp = links[i].href.split('?');
			//alert(links[i].href + "\n" + _url+_homepage);
			if(tmp[0] == _url+_homepage)
			{
					
				
				var tmp = tmp[1].split('&');
								
				var rub = tmp[0].split('=');
				rub = rub[1];
				
				
				if(tmp.length == 2)
				{				
					var cont = tmp[1].split('=');
					cont = cont[1];
					
					links[i].href="javascript:sndReq('"+rub+"','"+cont+"')";
				}
				else
				{
					cont = ""
				}

				
				
			}
		}
		
		
	}
	
}
