$(function() {

	$('.menu a').click(function() {
		$('.menu li').removeClass('active');
		$(this).parent().addClass('active');
		var id = $(this).attr('href').replace('#', '');
		if (id) {
			$('.popup').hide();
			$('.title, .desc').hide();
			$('#' + id).show();
			$('.appolon').addClass('pop');
			var h = $('#' + id).outerHeight() + $('#' + id).offset().top * 2;
			if (h < 800) {
				h = 800;
			}
			$('.wrapper').css('minHeight', h);
		} else {
			$('.wpapper').css('minHeight', 800);
			$('.popup').hide();
			$('.appolon').removeClass('pop');
			$('.title, .desc').show();
		}
		location.hash = id;
		return false;
	});

	if (location.hash) {
		$('.menu a[href=' + location.hash + ']').click();
	}

});
