$(function() {
	$("#supportLink").click(function(event) {
		event.preventDefault();
		
		var support_dialog_options = {
			dialogClass: 'kimbiaDialog',
			autoOpen: true,
			modal: true,
			draggable: false,
			resizable: false,
			width: 370,
			height: 650,
			overlay: {
				opacity: 0.8,
				background: 'black'
			},
			buttons: {
				"Close": function() {
					$(this).dialog("close");
				}
			}
		};

		$("#supportForm").dialog(support_dialog_options);
	});
});
