// Project: JHU Explorer Bar
// File: explorer_bar.js (custom jquery functions)
// Creator: VIM Interactive, Inc.
// Copyright: (c) 2010 - VIM Interactive, Inc.

$(function(){

	//toggles the dropdown div
	$("#explorer_btn").click(function(event) {
		$("#ugradadmissionssearchform").toggle();
		$("#dropdown").toggle();
		//Don't send the click to body or it will always hide the dropdown
		event.stopPropagation();
	});

	$('body').click(function() {
		if ( $('#dropdown').css('display') != "none" ) {
			//Hide the dropdown if visible
			$("#ugradadmissionssearchform").toggle();
			$("#dropdown").toggle();
		}
	});

	$("#dropdown").click(function(event) {
		//Don't send the click to body or it will always hide the dropdown
		event.stopPropagation();
	});

});

