function qtip_include(siteurl) {
	jQuery('a[rel="modalbe"]').each(function() {
		jQuery(this).qtip({
			content: {
				title: {
					text: 'SELECT YOUR LANGUAGE',
					button: 'close'
				},
				text: '<a class="menulang" href="'+siteurl+'/4010">Belgi&euml; - Nederlands</a><a class="menulang" href="'+siteurl+'/4020">Belgique - Fran&ccedil;ais</a>'
			},
			position: {
				target: $(document.body),
				corner: 'center'
			},
			show: {
				when: 'click',
				solo: true
			},
			hide: false,
			style: {
				width: {
					min: 200,
					max: 200
				},
				border: {
					width: 5,
					radius: 5,
					color: '#eeeeee'
				},
				title: {
					background: '#eeeeee',
					color: '#333333',
					padding: 5,
					paddingTop: 0
				},
				padding: 0,
				background: '#ffffff',
				color: '#333333'
			},
			api: {
				beforeShow: function() {
					jQuery('#qtip-blanket').fadeIn(this.options.show.effect.length);
				},
				beforeHide: function() {
					jQuery('#qtip-blanket').fadeOut(this.options.hide.effect.length);
				}
			}
		});
	});
	jQuery('a[rel="modalch"]').each(function() {
		jQuery(this).qtip({
			content: {
				title: {
					text: 'SELECT YOUR LANGUAGE',
					button: 'close'
				},
				text: '<a class="menulang" href="'+siteurl+'/3635">Schweiz - Deutsch</a><a class="menulang" href="'+siteurl+'/4000">Suisse - Fran&ccedil;ais</a>'
			},
			position: {
				target: $(document.body),
				corner: 'center'
			},
			show: {
				when: 'click',
				solo: true
			},
			hide: false,
			style: {
				width: {
					min: 200,
					max: 200
				},
				border: {
					width: 5,
					radius: 5,
					color: '#eeeeee'
				},
				title: {
					background: '#eeeeee',
					color: '#333333',
					padding: 5,
					paddingTop: 0
				},
				padding: 0,
				background: '#ffffff',
				color: '#333333'
			},
			api: {
				beforeShow: function() {
					jQuery('#qtip-blanket').fadeIn(this.options.show.effect.length);
				},
				beforeHide: function() {
					jQuery('#qtip-blanket').fadeOut(this.options.hide.effect.length);
				}
			}
		});
	});	
	jQuery('<div id="qtip-blanket">')
      .css({
         position: 'absolute',
         top: $(document).scrollTop(),
         left: 0,
         height: $(document).height(),
         width: '100%',
         opacity: 0.5,
         backgroundColor: '#ffffff',
         zIndex: 5000
      })
      .appendTo(document.body)
      .hide();
}
