$( function () {
	$( '#beta-button a' ).qtip( {
		content: {
			//prerender: true,
			text: 'Loading...',
			url: 'index.php?action=SiteIndex&sa=SubmitFeedback&blank=true',
			title: {
				text: 'Leave Feedback',
				button: 'Close'
			}
		},
		position: {
			corner: {
				target: 'bottomMiddle',
				tooltip: 'topMiddle'
			},
			adjust: {
				y: -14
			}
		},
		style: {
			name: 'green',
			width: 400,
			tip: 'topMiddle',
			border: {
				radius: 5
			}
		},
		show: {
			when: {event: 'click'}
		},
		hide: {
			fixed: true
		},
		api: {
			onContentUpdate: function () {
				$( '#feedback-button').click( function ( event ) {
					event.preventDefault();
					var api = $( '#beta-button a' ).qtip('api');
					var data = api.elements.content.find( 'form' ).serializeArray();
					api.updateContent( 'Sending...' );
					api.loadContent( 'index.php?action=SiteIndex&sa=SubmitFeedback&blank=true&submit=true', data, 'POST' );
				} );
			}
		}
	} );

} );