// when focus - remove text if default
$("#quoteform input[type=text]").focus(function() { 
  if ($(this).attr('default') == $(this).val()) $(this).val(''); 
});
$("#quoteform textarea").focus(function() {
  if ($(this).attr('default') == $(this).val()) $(this).val(''); 
});


$('#quoteform').submit(function(){
	var action = $(this).attr('action');
	
	$("#quote-warning").slideUp(500,function() {
    $('#quote-warning').hide();
	
		$.post(action, { 
			name: $('#name').val(),
			company: $('#company').val(),
			email: $('#email').val(),
			message: $('#message').val(),
			webdesign: ($('#webdesign').attr('checked')) ? 1 : 0,
			webproduction: ($('#webproduction').attr('checked')) ? 1 : 0,
			branding: ($('#branding').attr('checked')) ? 1 : 0,
			graphic: ($('#graphic').attr('checked')) ? 1 : 0,
			budget1: ($('#budget1').attr('checked')) ? 1 : 0,
			budget2: ($('#budget2').attr('checked')) ? 1 : 0,
			budget3: ($('#budget3').attr('checked')) ? 1 : 0
		},
			function(data){
				$('#quote-warning').html(data);
				$('#quote-warning').slideDown('slow');
				$('#submit-quote').attr('disabled',''); 
				if(data.match('success') != null) {
            $('#quote-warning').removeClass('error').removeClass('success').addClass('success');
            $('#quote-form-wrapper-1').fadeOut('slow');
            $('#quote-form-wrapper-2').fadeOut('slow');
        } else {
            $('#quote-warning').removeClass('error').removeClass('success').addClass('error');
        }
			}
		);
	});

	return false; 
});
