        // wait for the DOM to be loaded 
        $(document).ready(function() { 
		$("img").lazyload({
		   effect: "fadeIn",
                   threshold : 1500,
                   placeholder : "http://http.cdnlayer.com/stacyreeves/loading_blank.gif"
                   });

        }); 

/*	$(function() {
		$(".entry").each(function() {
			$("p img").each(function() {
				var clonedImage = $(this).clone().addClass("clone");;
				var closingP = "</p"+">\n";
				var newP = "\n<"+"p>";
				$(clonedImage).insertAfter(this);
				$(closingP).prependTo(clonedImage);
//				$(closingP).insertAfter(this);
//				$(newP).insertAfter(clonedImage);
//				$(this).remove();
//				$(this).clone().addClass("clone").insertAfter(this).end().remove();
//				var wrappedImage = "</p>"+$(image);
//				$(this).after(wrappedImage);
//				alert("Un-nesting image");
			});
		});
	});
*/

