$(document).ready(function() {
	// Hide the subnavs
    $('#navigation-menu li ul').hide();
	$('li.selected ul:first').show();
	$('li.selected').parent().show();
	
	// Attach the animation to the Nav
	$('#navigation-menu li[@id]').find('ul:first').parent().find('a:first').click(function() {
	    $('#navigation-menu li ul:visible').hide('slow');
	    $(this).parent().find('ul:first:hidden').show('slow', function() {
			window.location = $(this).parent().find('a:first').attr("href");
		});
		return false;
   });
	
	// Make the Selected <li> not close on click
	$('#navigation-menu li.selected').find('ul:first').parent().find('a:first').click(function() {
		window.location = $(this).parent().find('a:first').attr("href");
	});
});
