$(document)
		.ready( function() {

			// manage <div src="url"/> => get the HTML page corresponding to the
			// URL and fill the div with it
				$("div[src]").each( function() {
					url = $(this).attr("src");
					node = $(this);
					$.ajax( {
						url :url,
						cache :false,
						dataType :"html",
						async :false,
						success : function(html) {
							// fill the div with the got URL
						node.html(html);

						// clean HTML inserted
						node.find("link").remove();
						node.find("meta").remove();
						node.find("base").remove();
						node.find("title").remove();
					},
					error : function() {
						node.html("URL : " + url + "not accessible");
					}
					});

				});
				
		});
				




