$(document).ready(function() {
	//$('#postAddress span:first').hide(); // IE 6 eseten, ha valakit zavar
	$('#postAddress').toggle(
		function() {
			$(this).blur();
			$('#postAddressCnt').slideDown('fast');
			$(this).find('span:first').show();
			$(this).find('span:last').hide();
		},
		function() {
			$(this).blur();
			$('#postAddressCnt').slideUp('fast');
			$(this).find('span:last').show();
			$(this).find('span:first').hide();
		}
	);
});
