$(document).ready(function() {
	// Select all images in the sidebar and strip the surrounding p tag						   
	$("#feature-content p img").each(function(){
		$(this).parent().replaceWith($(this).attr("src", getSource));
	});
	
	// Get the source attribute of the image
	function getSource( index, attributeValue ) {
		return ( this.src );
	}
});
