/*
show form
if #in_prefcontact='business'

*/
jQuery(document).ready(function() {

		var the_sel = $("select#in_prefcontact").val()
		if(the_sel=='business') {
			$('fieldset#set-company-address').show(200);
		} 


$('input#fakeproceed').click(function(){
	$(this).val('Please wait...');
	$(this).attr('disabled', true);
	$g=$(this);

	$.ajax({
		url: "/bifm/assets/ajax/application.jsp",
		data: ({email : $('#in_email').val()}),
		success: function(data){
			$g.hide();
			if(data=='good'){	$('div#step1b').show(200); }
			else { $('div#stepX').show(200);}
		},
		error: function(){
			$g.hide();
			$('div#stepX').show(200);
		}
	});

//	
	return false;
})

;

$('select#in_prefcontact').change(function(){
		var the_sel = $("select#in_prefcontact").val()
		if(the_sel=='business') {
			$('fieldset#set-company-address').show(200);
		} else {
			$('fieldset#set-company-address').hide(200);	
		}
	});
});




