var progDescShown = [];function descriptionCheck(o) {	if(progDescShown[o.value]) return;	progDescShown[o.value] = true;	$.ajax({		type: "GET",		url: "/schooldegrees/program_description_lookup.php?pid=" + o.value,		success: function(result) {			$(".ui-dialog").dialog("close");			var prog = eval("(" + result + ")");			if(prog.display * 1) {				var progDiag = $("<div></div>").addClass("ui-dialog");				$(progDiag).dialog({					title: prog.name,					width: 600,					position: 'top'				});				$(progDiag).html(prog.description);			}		}	});}	$(document).ready(function() {	$('[name*=edu_program_of_interest],[name*=programID]').bind('change', function() {		descriptionCheck(this);	});	$('[name*=edu_campus_of_interest]').bind('change', function() {		$('[name*=edu_program_of_interest]').each(function() {			if($(this).is(":visible")){				descriptionCheck(this);			}		});	});	$('[name*=edu_program_of_interest]').each(function() {		if($(this).is(":visible")){			descriptionCheck(this);		}	});});
