$(document).ready(function(){


	$(".close").click(function () {
		$(this).parent().hide();
		return false;
	});

	$(".policy-fee").hide() 
	$("#program-select").change(function () {
  	$(".policy-fee").hide() 
  	$('#'+$("#program-select option:selected").attr("class")).show();
	});
	$('div#sub-menu > ul h4.expand').click(function() {
		$(this).next('ul').slideToggle('fast');
		$(this).parents('li').toggleClass('active');
		return false;
	});
	$('ul#main-menu').superfish();
	var zIndexNumber = 1000;
	$('div').each(function() {
	  $(this).css('zIndex', zIndexNumber);
	  zIndexNumber -= 10;
	});
});
