$(document).ready(function() {

	$('.select_sub').css('display', 'none');
	$('.nav div.chosen-page').show();
	$('.nav .select').click(function() {
		$('.select_sub').css('display', 'none');
		$(this).children().find('.select_sub').fadeIn('slow');
	});
	
	

});

