$(function(){
	$(".alertbox").hide();
	$(".show_hide").show();
	$('.show_hide').click(function() {
		$(".alertbox").toggle();
	});  
});
