$().ready(function() {
	$('.flag_as_inappropriate').each(function() {
		$flat_open_div = $('<a href="" class="flag_handler_open">Flag as inappropriate</a>').click(function(e) {
			e.preventDefault();
			$('.flag_as_inappropriate', $(this).hide().parent()).show();
			$(this).siblings('.flag_handler_close').show();
		});
		
		$flat_close_div = $('<a href="" class="flag_handler_close button_small"><img class="form_button" src="/site_media/site_images/buttons/form_buttons/btn_close.gif" alt="Close">').click(function(e) {
			e.preventDefault();
			$('.flag_as_inappropriate', $(this).hide().parent()).hide();
			$(this).siblings('.flag_handler_open').show();
		}).hide();
		$(this).hide().after($flat_open_div).after($flat_close_div);
	});
});
