	    $.fn.image = function(src, f){ 
			return this.each(function(){ 
				var i = new Image(); 
				i.src = src; 
				i.onload = f; 
				this.appendChild(i);
			}); 

	    }

	    function loadContent(id, str) {
			$("#kye_content").html("");			
			$("#kye_content").html(str);
			$("#contentArea img").remove(); 
	    		$("#contentArea").image(id);
	    }