/**
 * @author mconway
 */
$(document).ready(function(){
	$("h5.question").click(function(){
		$(this).next("div.answer").slideToggle("slow").siblings("div.answer:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h5.question").removeClass("active");
	});

	$('.commonButton:has(input)').click(function(){return false;});
	if ($('div#completeapp').length > 0) {
		html = $('div#completeapp').html();
		buttons = {
			"Close": function(){
				$(this).dialog('close');
			},
			"Continue Application": function(){
				util.application_doAlert('location|||application/education.php|||');
				$(this).dialog('close');
			}
		};
		ss.displayMessage(html, 'Please Continue Your Application', buttons);
		$('#DivContent1 ul li a').each(function(){
			if($(this).attr('href')=='/ae/application/review.php'){
				$(this).attr('href','/ae/application/education.php').html('Continue Application');
			}
		});
	}
	if ($('div#incompleteapp').length > 0) {
		html = $('div#incompleteapp').html();
		buttons = {
			"Proceed to the Info page": function(){
				util.application_doAlert('location|||application/your_info.php|||');
				$(this).dialog('close');
			}
		};
		ss.displayMessage(html, 'Incomplete Information', buttons);
	}
});