	function GETtext(TXT) {
		$("#CONTENT1").fadeOut('fast');
		$("#CONTENT1").delay(600);
		$.post(TXT, { DoLoad: "go" }, function(stuff) { $("#CONTENT1").html(stuff); $("#CONTENT1").fadeIn('slow'); })
	}
	function GETimage(IMG) {
		$("#CONTENT1").fadeOut('fast');
		$("#CONTENT1").delay(600);
		$.post('image.php', { DoLoad: "go", FindImage: IMG }, function(stuff) { $("#CONTENT1").html(stuff); $("#CONTENT1").fadeIn('slow'); });
	}
	function GETflash(SWF,W,H) {
		$("#CONTENT1").fadeOut('fast');
		$("#CONTENT1").delay(600);
		$.post('flash.php', { DoLoad: "go", swf: SWF, h: H, w: W }, function(stuff) { $("#CONTENT1").html(stuff); $("#CONTENT1").fadeIn('slow'); });
	}
	GETtext('content1.php');
