function qtip_include(siteurl) {
	function showkaterzake() {
		jQuery('a[rel="katerzake"]').each(function() {
			jQuery(this).qtip({
				content: {
					title: {
						text: 'KaTerZake',
						button: '<img src="'+siteurl+'/katerzake/image/close.png" width="16" height="16" title="Scherm sluiten">'
					},
					text: '<iframe src="'+siteurl+'/katerzake/" name="katerzakeframe" id="katerzakeframe" frameborder="0" hspace="0" height="660" width="100%" marginheight="0" marginwidth="0" scrolling="auto" vspace="0"></iframe>'
				},
				position: {
					target: $(document.body),
					corner: 'center'
				},
				show: {
					when: false,
					solo: true,
					effect: {
						length: 0
					},
					ready: true
				},
				hide: false,
				style: {
					width: {
						min: 1040,
						max: 1040
					},
					border: {
						width: 10,
						radius: 10,
						color: '#ffffff'
					},
					title: {
						background: '#ffffff',
						color: '#ffffff',
						padding: 0
					},
					padding: 0,
					paddingBottom: 20,
					background: '#ffffff',
					color: '#333333'
				},
				api: {
					beforeShow: function() {
						jQuery('#qtip-blanket').fadeIn(this.options.show.effect.length);
					},
					beforeHide: function() {
						jQuery('#katerzakeframe').contents().find('#episode').html(''); // KILL SWF ONCLOSE
						jQuery('#qtip-blanket').fadeOut(this.options.hide.effect.length);
					}
				}
			});
		});
	}
	if(jQuery('a[rel="katerzake"]').length > 0) {
		jQuery('<div id="qtip-blanket">')
			.css({
				position: 'absolute',
				top: $(document).scrollTop(),
				left: 0,
				//height: $(document).height(),
				width: '100%',
				height: '100%',
				opacity: 0.8,
				backgroundColor: '#ffffff'
			})
			.appendTo(document.body)
			.hide();
		function showblanket() {
			jQuery('#qtip-blanket').fadeIn(400);
		}
		setTimeout(showblanket, 1000);
		setTimeout(showkaterzake, 1400);
	}
}
