$(document).ready(function() {
	$("#conference-information-link").colorbox({width:"830px", height:"630px", inline:true, href:"#conference-information"});

	$('#state option').click(function() {
		$('#other_state').slideUp();
	});
	$('option.other').click(function() {
		$('#other_state').slideDown();
	});
	
	$('.form-success-thankyou').click(function() {
		$(this).slideUp();
	});
	
});
