$(document).ready(function(){
	$("#insidefchild a").click(function(){
	$("#fbox").html('<img src="images/ajaxloading.gif" alt="Loading..." style="margin-left:260px; margin-top:50px; position:absolute;" />');														 	$('#fbox').fadeTo("slow", 0.4);
	$.get('bottombox.php', {'term': $(this).text()}, function(data){
	$("#fbox").ajaxStop(function(){
		$("#fbox").fadeTo('fast', 1);						 
		});
		$("#fbox").html(data);
	});
		
	return false;
								
	});

});