$(document).ready(function(){
	
	// Move any images and objects from post into a seperate DIV.
	
	//$(".post .entry img").fadeOut("slow");
	$(".post .entry img").each(function(index) {
																				 
																				 
     	$(this).prependTo($(this).parents(".post").children(".post_image"));
		
		
  	});

	$(".post_info").each(function(index) {
		//$(this).fadeOut("slow");
		$(this).find('br').first().remove();

	});
	
	

});

