
$(document).ready(function(){
	
  $('#mailing-list').dialog({
	  autoOpen: false,
	  width: 500,
	  buttons: {
		  "Submit": function(){
			//this.disabled = true;	
			//this.value = "Submitting Please Wait..";
			
			$.post("mailinglist.php", $("#mailing-list-form").serialize(),
			  function(data){
				  if(data == 'ok'){
					alert("You have been added to our mailing list.");
					closeme=1;
				  }
				  else if(data == 'exists'){
					alert("You have already been added to our mailing list.");
					closeme=1;
				  }
			  });
			  
			  if(closeme=1){
				$(this).dialog("close");
			  }
			  
			  return false;
			}, 
		  "Cancel": function() { 
			  $(this).dialog("close"); 
		  } 
	  }
  });
  
  // Dialog Link
  $('#mailing-list-btn').click(function(){
	  $('#mailing-list').dialog('open');
	  return false;
  });


  $('#quick-form').dialog({
		autoOpen: false,
		width: 400,
		buttons: {
			"Submit": function(){
			 
			  //this.disabled = true;	
			  //this.value = "Submitting Please Wait..";
			  
			  $.post("quick-form.php", $("#quick-form-form").serialize(),
				function(data){
					  alert("Your Inquiry has been sent.");
					  closeme=1;
				});
				
				if(closeme=1){
				  $(this).dialog("close");
				}
				
				return false;
			  }, 
			"Cancel": function() { 
				$(this).dialog("close"); 
			} 
		}
	});	
	
	if(window.location.hash=="#inquire"){
	   $('#quick-form').dialog('open'); 
	}
});
