$(document).ready(function(){
	$("#rfpform").formToWizard({ submitButton: 'SaveAccount' })
	$(".datepicker").datepicker();
	$(".check").button();
	$('#other').click(function(){
		$("#meetother").show();
	});
	$('#meetingconference').click(function(){
		$("#meetother").hide();
	});
	$('#tradeshow').click(function(){
		$("#meetother").hide();
	});
	$('.eoptions').click(function(){   
		$('.eoparea').hide();
		$(this).next().show();
	});	
});
