$(document).ready(function(){
	init_projets_nav();
	
	$("#nav-container").bind("ajaxSend", function(){
			$(this).fadeOut('slow', function() {});
			$('#nav-loading').show();
	 }).bind("ajaxComplete", function(){
			$('#nav-loading').hide('normal', function(){
				
			});
	 		$("#nav-container").fadeIn('slow', function() {$(this).trigger("load");});
	 }).bind("load", function() {
			init_projets_nav();
	 });
	
});

function init_projets_nav() {
	$("#nav-container a.paging").each(function() {
		$(this).click(function() {
			$("#nav-container").load($(this).attr('alink') );
			return false;
		});
	});
}

