$(document).ready(function() {
			cargaImagen("backimg");			   
		});
						   
function cargaImagen(id_contenedor){
	$.ajax({
	   type: "POST",
	   url: "readRND.php",
	   beforeSend:function(msg){
		   		$("#"+id_contenedor).html("CARGANDO!!!!");
	   },
	   success: function(msg){
				$("#"+id_contenedor).html('<img src="'+msg+'" class="background"/>');
	   }
	});	
}