$(function() {
	$("#nav li.level_1").hover(function() {
			var activeLink = $(this).attr('class').split(' ').slice(0, 1);
			var theActive = "#nav li." + activeLink + " a";
			var dropDown = "#nav li." + activeLink + " ul";
			$(theActive).addClass("active");
			$(dropDown).show();
		}, function() {
			var activeLink = $(this).attr('class').split(' ').slice(0, 1);
			var theActive = "#nav li." + activeLink + " a";
			var dropDown = "#nav li." + activeLink + " ul";
			$(theActive).removeClass("active");
			$(dropDown).hide();
	});
	$("#footer .copy ul li:last-child").addClass("nb");
	$("#footer ul.links li:last-child").addClass("last");
});

$(function() {
	$('select[name=employer], select[name=school], select[name=industry]').each(function(el) {
		if( $(this).attr('data-default') ) {
			$(this).val($(this).attr('data-default'));
		}
	});
	$('select[name=employer], select[name=school], select[name=industry]').change(function() {
		if( !$(this).val() ) {
			return;
		}
		$($(this).parents('form')).submit();
	});
});
