$(document).ready(function(){
						   
	
	//hide all of the career map divs
	$('#careerMap').children().hide();
	
	
	$('.mapClick').click(function(){
								  
		var dropID = $(this).attr("id");
		var whichDiv = '#jobBox' + dropID; 
		
		if (whichDiv == null){
		
		alert("no div by that number");
		
		} else {
			
	   		$(whichDiv).show('fast');
		
			}
       
		   
   });
	
	
	$(document).bind('click', function(e) {
                var $clicked = $(e.target);
                    $("#careerMap").children().hide();
            });
	

});

	
	
 
 
 
 

