var Redirect = new Class({
	
	source : {
		fr : 'Bienvenue!<br /><br />Un nouveau site internet contient les informations actualisées sur la formation linguistique pour jeunes (à partir de 14 ans) qui se situent entre la fin de la scolarité obligatoire et l\'apprentissage ou l\'entrée au Gymnase, dans une école de diplôme ou une école de commerce. Voici l\'adresse du site: <br /><a href="http://www.esl.ch/fr/sejour-linguistique-enfants-jeunes-ados.htm">www.esl.ch/fr/sejour-linguistique-enfants-jeunes-ados.htm</a><br /><br />Bonne visite.',
		de : 'Willkommen!<br /><br />Eine neue Internetseite enthält die aktuellsten Informationen über Sprachausbildungen für Jugendliche (ab 14 Jahren), die sich zwischen obligatorischem Schulabschluss und einer Berufslehre oder Gymnasium sowie Diplom- oder Handelsmittelschule befinden. Sie finden die Internetseite hier: <br /><a href="http://www.esl.ch/de/sprachaufenthalt-schuler-jugendliche.htm">www.esl.ch/de/sprachaufenthalt-schuler-jugendliche.htm</a><br /><br />Wir wünschen Ihnen viel Vergnügen beim Entdecken der Informationen',
		it : 'Benvenuti!<br /><br />Un nuovo sito Internet con le ultime informazioni sulle formazioni linguistiche per giovani (da 14 anni)  tra la fine della scuola dell\'obbligo e il liceo, apprendistato o scuola commerciale, è disponibile a quest\'indirizzo:<br /><a href="http://www.esl.ch/it/soggiorno-linguistico-bambini-giovani-ragazzi.htm">www.esl.ch/it/soggiorno-linguistico-bambini-giovani-ragazzi.htm</a><br /><br />Buona visita!',
		en : 'Welcome!<br /><br />A new website containing the latest information on long-term language study abroad programmes, generally aimed at young people (from 14 years) who are between middle school and high school or vocational school, is available at this address:<br /><a href="http://www.esl-languages.com/en/junior-summer-camps-children-kids-teenagers.htm">www.esl-languages.com/en/junior-summer-camps-children-kids-teenagers.htm</a><br /><br />Enjoy your visit!'
	},

	initialize : function(){
		//return;
		if (this.getText()) {
			this.setUnderlay();
			this.setPopup();
		}
	},
	
	setUnderlay : function(){
		this.underlay = new Element('div', {
			id : 'underlay',
			styles : {
				position: 'absolute',
				top : '0',
				left : '0',
				width : window.getWidth(),
				height : window.getScrollHeight(),
				background : '#000',
				zIndex : '10000',
				opacity : '0.85'
			}
		}).injectTop(document.body);
	},
	
	getText : function(){
		this.lang = defaultLanguage;
		this.text = this.source[defaultLanguage];
		if (this.text == '') {
			return false;
		} else {
			return true;
		}
	},
	
	setPopup : function(){
		this.popup = new Element('div', {
			id : 'popup',
			styles : {
				position : 'absolute',
				width : 640,
				top : 200,
				left : (window.getWidth() - 640) / 2,
				background : '#FFF',
				fontFamily : 'Verdana, Arial, san-serif',
				color : '#000',
				zIndex : '10001',
				padding : 25,
				border : '1px solid #000'
			}
		}).setHTML(this.text).injectTop(document.body);
		new Element('img', {
			src : '/images/logo-small.gif',
			styles : {
				float : 'right',
				marginBottom: 25,
				marginLeft: 15
			}
			
		}).injectTop(this.popup);
	}
});

window.addEvent('domready', function(){
	new Redirect();
});