 $(function() {
			
	$(".image").click(function() {
	$('#image').hide();
	$('#image').fadeIn('slow');

	var image = $(this).attr("rel");
	//$('#image').html('<img src="' + image + '"/>');

		CargaAjaxGET('Function/Galeria.php?ids='+image+'','image',1);

	return false;

});
});
 
  $(function() {
			
	$(".image_foto").click(function() {
	$('#image_foto').hide();
	$('#image_foto').fadeIn('slow');

	var image = $(this).attr("rel");
	//$('#image').html('<img src="' + image + '"/>');

		CargaAjaxGET('Function/GaleriaFoto.php?ids='+image+'','image_foto',1);

	return false;

});
});
