$(document).ready(function(){
	//unwrap all postpic divs from parent p tags
	$(".first-p").each(function() {
		var text = $(this).html();
		var first_letter = text.substr(0,1);
		if ( /[a-zA-Z]/.test(first_letter) ) {
		$(this).html('<span class="cap">' + first_letter + '</span>' + text.slice(1));
		}
	});
function closebar(){
	document.getElementById('messagebar').style.display="none";
}
});

