jQuery(function($){
	$("#popup-window-contact").slideDown();
	$("#contact").click(function() {
		$("#popup-window-contact").stop().animate({top: 162}, {queue: false, duration: 1000, easing: 'easeOutBounce'});
		/*	$("#popup-window-contact").stop().animate({height: 399}, {queue: false, duration: 600, easing: 'easeOutBounce'});*/
	});

	
	$("#close-nav-contact").click(function() {
		/*$("#popup-window-contact").slideUp();*/
		$("#popup-window-contact").stop().animate({top: -399}, {queue: false, duration: 1000, easing: 'easeOutBounce'});
	});
});

jQuery(function($){
	$("#popup-window-about").slideDown();
	$("#about").click(function() {
		$("#popup-window-about").stop().animate({top: 162}, {queue: false, duration: 1000, easing: 'easeOutBounce'});
		/*	$("#popup-window-about").stop().animate({height: 399}, {queue: false, duration: 600, easing: 'easeOutBounce'});*/
	});
	
	$("#close-nav-about").click(function() {
		/*$("#popup-window-about").slideUp();*/
		$("#popup-window-about").stop().animate({top: -399}, {queue: false, duration: 1000, easing: 'easeOutBounce'});
	});
});

