$(function() {

	
		$( "#home-text" ).accordion({
			event: "mouseover",
			header: "h3",
			animated: 'bounceslide',
			fillSpace: true
		});
		$( "#order-form-bg, #question-form-bg" ).dialog({
			autoOpen: false,
			height: 825,
			width: 400,
			modal: true,
			show: "fold",
			hide: "fold",
			stack: false
	});
	$( "#question-form-bg" ).dialog({
			autoOpen: false,
			height: 600,
			width: 400,
			modal: true,
			show: "fold",
			hide: "fold",
			stack: false
	});
		$('.order-button').click(function(){
					$('#order-form-bg').dialog('open');
					return false;
				});
				$('#questions-button').click(function(){
					$('#question-form-bg').dialog('open');
					return false;
				});
				$('#servicedate').datepicker({
					inline: true,
					minDate: '2d',
					showAnim: 'slide'
				});
	});
	$(function() {
		$( "#resizer" ).resizable({
			minHeight: 240,
			maxHeight: 525,
			resize: function() {
				$( "#home-text" ).accordion( "resize" );
			}
		});
	});
