$(function() { 
	
	$("input.email").bind('focus',function(){
		if ($(this).val()=='Required (Mail will not be published)') {
			$(this).val('');
		}
	});
	
	$("input.author").bind('focus',function(){
		if ($(this).val()=='Required') {
			$(this).val('');
		}
	});
	
	$("input.email").bind('blur',function(){
		if ($(this).val()=='') {
			$(this).val('Required (Mail will not be published)');
		}
	});
	
	$("input.author").bind('blur',function(){
		if ($(this).val()=='') {
			$(this).val('Required');
		}
	});

	
	$(".post_body img").each(function() {
		$(this).wrap('<div class="media_wrapper"></div>');
		$(this).parents('.media_wrapper').append('<div class="media_wrapper_footer"></div>');
	});
	
	$(".post_body object").each(function() {
		$(this).wrap('<div class="media_wrapper"></div>');
		$(this).parents('.media_wrapper').append('<div class="media_wrapper_footer"></div>');
	});
	
});