function switchMenu(id) {
	if ($('#'+id).height() >= 150 ) {
		$('#'+id).animate({height: 67}, 300);
	} else { $('#'+id).animate({height: 150}, 300); }
	
}

function showPopup(popup) {
	windowHeight = $('.mainwrapper').height();
	
	//alert(left+'\n'+currentOffset)
	$('<div id="blackBack"></div>').appendTo($('body'));
	
	$('#blackBack').height(windowHeight).click(function(){
		$(this).remove();
		$('.popup').hide();
	});
	
	left=($('.mainwrapper').width()-$('#'+popup).width())/2;
	currentOffset = document.documentElement.scrollTop || document.documentElement.scrollTop;
	currentOffset = currentOffset + parseInt((document.documentElement.clientHeight - $('#'+popup).height()) / 2);
	
	$('#'+popup)
		.css({
			top:currentOffset
		})
		.show();
	left=($('.mainwrapper').width()-$('#'+popup).width())/2;
	$('#'+popup)
		.css({
			left:left
		})
}