$(document).ready(function(){
	
	if(location.hash != "") {
		show_staff_detailed(location.hash.replace("#",""));
	}
	
	$('#overlay').click(function() {
		close_mission('#staff_detailed');
	});
	
	
});


function show_staff_detailed(id) {

	var url = base_url + 'staff/member/' + id;
	$.ajax({
		  url: url,
		  cache: false,
		  success: function(html){
		  	$('#overlay').height($(document).height());
		  	$('#overlay').show();
		  	$('#container').append(html);
		  },
		  error: function(XMLHttpRequest, textStatus, errorThrown) {
			  alert(textStatus + ' : ' + errorThrown)
		  }
	});
	
	
	return false;

}