/*jQuery.fn.extend({
	fixImageJumping: function() {
		// Check to see which is taller - the container or any pictures inside
		$(this).each(function()	{
			if($(this).height() < $(this).find('.picture').height())	{
				$(this).height($(this).find('.picture').height());
			}
		});
		// Return jQuery object (for chaining)
		return this;
	},
});*/

