$(function() {
	var lang = [];
		lang['german'] = [],
		lang['english'] = [],
		lang['german']['title'] = 'M&ouml;chten Sie diese Seite verlassen?',
		lang['english']['title'] = 'Do you want to leave this page?',
		lang['german']['text'] = 'Mit Aktivierung des Links verl&auml;sst Du die Website mixery-fun-travel.de und wirst auf die Buchungsplattform f&uuml;r den Melt!-Hotelzug weitergeleitet; die Buchungsabwicklung erfolgt nicht durch mixery-fun-travel.de',
		lang['english']['text'] = 'With clicking the Link you are about to leave the website mixery-fun-travel.de and are forwarded to the booking platform for the Melt!-Hoteltrain. The booking is not made through mixery-fun-travel.de';

	var currentLink = '',
		confirmText = lang[userLanguage]['confirm'],
		cancelText = lang[userLanguage]['cancel'];
	
	if(userLanguage == 'german'){
		var buttonObj = {
				'Webseite verlassen': function() {
					location.href = currentLink;
				},
				'abbrechen': function() {
					$(this).dialog('close');
				}
			}
	} else {
		var buttonObj = {
				'Leave website': function() {
					location.href = currentLink;
				},
				'cancel': function() {
					$(this).dialog('close');
				}
			}
	}
	
	var $dialog = $('<div></div>')
					.html(lang[userLanguage]['text'])
					.dialog({
						autoOpen: false,
						resizable: false,
						height:160,
						title: lang[userLanguage]['title'],
						modal: true,
						buttons: buttonObj
					});
	$('a.external').click(function() {
		currentLink = $(this).attr('href');
		$dialog.dialog('open');
		return false;
	});
});

