function show_foto2(id, key) {
	$('#show_foto2').html('<img src="gfx/loading.gif" alt="loading"/>');

$.ajax({
	type: "POST",
	url: "ajaxas.php",
	data: "a=getFoto&id="+id+"&key="+key,
	success: function(msg){

$('#th').html('<img src="gfx/loading.gif" alt="loading"/>');
$('.photo1').hide();
$.ajax({
	type: "POST",
	url: "ajaxas.php",
	data: "a=show_thumbs&id="+id,
	success: function(msg){
	$('#th').html(msg);}

});

	$('#show_foto2').html(msg);}

});
}



function show_foto(id, key) {
	$('.inner').html('<img src="gfx/loading.gif" alt="loading"/>');
$.ajax({
	type: "POST",
	url: "ajaxas.php",
	data: "a=show_foto&id="+id+"&key="+key,
	success: function(msg){

$('#th').html('<img src="gfx/loading.gif" alt="loading"/>');
$.ajax({
	type: "POST",
	url: "ajaxas.php",
	data: "a=show_thumbs&id="+id,
	success: function(msg){
	$('#th').html(msg);}

});
	$('.inner').html(msg);}

});
}


