function show_message(hashname) {
	$('#help-content').html($(hashname).html());
	$('#help').fadeIn();
	window.location.hash = hashname;
}

$(function(){
	if(window.location.hash){
		show_message(window.location.hash);
	}
	$('#id_url').focus();
	$('.ajax-name').click(function(){
		$(this).next('.ajax-value').show();
		$(this).hide();
	});
	$('#help-button img').hover(function(){
		$(this).attr('src', '/media/images/help_hover.png');
	}, function(){
		$(this).attr('src', '/media/images/help.png');
	});
	$('#help-close').click(function(){
		$('#help').fadeOut();
		window.location.hash = '';
	})
	$('a.ajax').click(function(){
		show_message($(this).attr('href'));
		return false;
	});
});

