(function($)
{
$.fn.blogTeaser = function( options )
{
$('.blog-post').each(function(i) {
var bPost = $(this);
var blurb = $(this).find('.blurb');
var permalink = $(this).find('.permalink');
$(this).children().not('h3').hide();
$(blurb).each(function(i) {
$(this).appendTo(bPost);
$(this).show();
$(this).children('br').hide();
$(this).wrap('<p/>');
});
$(permalink).each(function(i) {
$(this).appendTo(bPost);
$(this).show();
});
});
$('#content .blog').each(function(i) {
$(this).css("visibility","visible");
});
};
})(jQuery);

