$(document).ready(function () {

	$('#SelectImageID').click(function () {
		$('#SelectMenuID').slideToggle('medium');
	});


	// close the select menu if the user clicks anywhere except the menu ID
	$(document).click(function(event) {
		
		if ((event.target.id != "SelectMenuID") && (event.target.id != "SelectImageID")) {
			$("#SelectMenuID").slideUp(); 
		}

	});

});


