function share_prep(article){
	var title = $(article).find(".title").text();
	var final = new Array();
	var text = "";
	var image = "";
	
	// Grab all of the text within the paragraph tags, 
	$(article).children("p").each(function(){
		text += $(this).text();
		if(image == ""){
			if($(this).find("img").length){
				image = "http://www.shopstyletribe.com/"+$(this).find("img").attr("src");
			}
		}
	});
	if(text.length > 250){
		text = text.substr(0,250) + "...";
	}
	final['title'] = title;
	final['text'] = text;
	final['image'] = image;
	return final;
}