$(document).ready(function() {
	
	var contacts_hide = function() {
		$('#contact_names .contact_name').removeClass('active').addClass('link');
		$('#contact_photos > img').hide();
		$('#contact_list > div').hide();
	};
	
	var contact_show = function(name_id) {
		var div_id = name_id.replace(/_name$/, '');
		var div = $('#'+div_id+'_desc');
		if (div) {
			div.show();
		}
		img = $('#'+div_id+'_photo');
		if (img) {
			img.show();
		}
	};
	
	$('#contact_names .contact_name').click(function() {
		contacts_hide();
		contact_show($(this).attr('id'));
		$(this).removeClass('link').addClass('active');
	});
	
	var current_contact = false;
	if (window.location.hash) {
		current_contact = $('#contact_' + window.location.hash.replace(/\#/, '') + '_name');
	}
	if (!current_contact) {
		current_contact = $($('#contact_names .contact_name')[0]);
	}
	current_contact.click();

});
