$(document).ready(function(){
	$('#quickquoteformpopup').submit(function(){
		$.ajax({
			data: $(this).serialize(),
			type: $(this).attr('method'),
			url: "/quickquotepop.php",
			success: function(response){$('#popupboxcontent').html(response);}
		});
		return false;
	});


});

