$(function(){

	$('#same_address').click(function () {
	    if ($(this).attr("checked")) {
	        $("#billing_address_block").slideDown("slow");
	    }else{
					$("#billing_address_block").slideUp("slow");
			}
			return;
	});
	
	if ( $('#same_address').length > 0 ) {
	    if ($('#same_address').attr("checked")){
				$("#billing_address_block").css("display","block");
			}else{
				$("#billing_address_block").css("display","none");
			}
	}
	
	$("#user_types input:radio").change(function () {
	    if ($(this).val() == "Apotheker") {
	        $("#fph_number_block").slideDown("slow");
	    }else{
					$("#fph_number_block").slideUp("slow");
			}
			return;
	});
	
	if ( $('#rb_apotheker').length > 0 ) {
	    if ($('#rb_apotheker').attr("checked")){
				$("#fph_number_block").css("display","block");
			}else{
				$("#fph_number_block").css("display","none");
			}
	}
	
	if ($('#flash').length > 0){
		$('#flash').delay(5000).fadeOut(2000);
	}
	
	
});


