// JavaScript Document

function ajax_selection(nav,position)
{
	xhr_object = AjaxObject();
	var param = no_cache();
	
	
	
	xhr_object.onreadystatechange = function()
	{
		if(xhr_object.readyState == 4 && xhr_object.status == 200)
		{
			var reponse = xhr_object.responseText;
			document.getElementById('ajax_content').innerHTML = reponse;
			
		}
	}
	
	xhr_object.open('GET','http://'+window.location.host+'/notre_selection/' + nav + '/' + position +  '/' + param,true);
	xhr_object.send(null);
}