$(document).ready(function () { 
	
	$('#sub_content #navigation li.other').show();
	$('#sub_content #navigation li.other_options').hide();
	
	$('#sub_content #navigation li.other').click(function() {
		$(this).fadeOut('fast',function() {
			$('#sub_content #navigation li.other_options').slideDown('fast');
		});
	});
	
	
});