$(document).ready(function() {
	$('#show_alerts').toggle(function(){
		$("#alert_box").show();
	}, function(){
		$("#alert_box").hide();
	});
});
