function setAlertText(main, secondary) {	$('#main_text').html(main);	$('#secondary_text').html(secondary);	showAlertBox();}function showAlertBox() {	$('#alert_box_container').fadeIn();}function hideAlertBox() {	$('#alert_box_container').fadeOut();}
