/*function show(divid){
	if(document.getElementById(divid).style.display=="none") {
		document.getElementById(divid).style.display="block";
	} else {
		document.getElementById(divid).style.display="none";
	}
}*/

$(document).ready(function(){
	$('input[@type=radio]:first').attr('checked', 'checked');
	$('option#mail_rus').attr('selected','selected');
	
	
	$("#phone_inp").mask("+7(999)999-99-99", {placeholder: " "});
	$("#mail_ind_inp").mask("999999", {placeholder: " "});
	
	$("#self").click(function(){
		$("#map_adr").hide("slow");
		$("#mail_index").hide("slow");
		$("#adress").hide("slow");
	})
	
	$("#courier").click(function(){
		$("#adress").show("slow");
		$("#mail_index").hide("slow");
		$("#map_adr").hide("slow");
	});
	
	$("#postdelivery").click(function(){
		$("div.l > p").show("slow");
	});
	
});

function p_show(element){
	var value = element.value;
	if (value == 'ems'){
	$("p#for_rus_mail").hide("fast");
	$("p#for_ems").show("slow");
	return false;
	} else {
		$("p#for_ems").hide("fast");
		$("p#for_rus_mail").show("slow");
		return false;
	}
}

