jQuery(document).ready(function() {
	$.ajax({
		type : 'GET',
		url : 'preload.php',
		async : true,
		dataType : 'html',
		success : function(response) {
			var html = $(response);
			$('#contenu').append(html);
			$('#pillmenu a.preload').each(function() {
				var el_id = 'content_'+$(this).attr('id');
				if ($('#content_'+$(this).attr('id')).length == 1) {
					$(this).hover(function() {
						$('#currentPage').hide();
						$('#content_'+$(this).attr('id')).show();
					},
					function() {
						$('#content_'+$(this).attr('id')).hide();
						$('#currentPage').show();
					});
				}
			});
		}
	});
});
