var Redirect = new Class({
	
	source : {
		fr : 'Bienvenue!<br /><br />Un nouveau site Internet contenant les dernières informations sur les formations linguistiques pour jeunes diplômés, cadres et professionnels est disponible à cette adresse: <br /><a href="http://www.esl.ch/fr/cadres-affaires/cours-langues.htm">www.esl.ch/fr/cadres-affaires/cours-langues.htm</a><br /><br />Bonne visite.',
		de : 'Willkommen!<br /><br />Eine neue Internetseite mit allen aktuellen Informationen über die Sprachausbildung für junge Akademiker, Führungskräfte und Fachleute ist unter dieser Adresse: <br /><a href="http://www.esl.ch/de/kaderkurse/index.htm">www.esl.ch/de/kaderkurse/</a> abrufbar.<br /><br />Viel Freude beim Besuch!',
		it : 'Benvenuti!<br /><br />Un nuovo sito Internet contenente le ultimissime informazioni sulle formazioni linguistiche per giovani diplomati, dirigenti e professionisti è disponibile a questo indirizzo:<br /><a href="http://www.esl.ch/it/soggiorni_linguistici_dirigenti.htm">http://www.esl.ch/it/soggiorni_linguistici_dirigenti.htm</a><br /><br />Buona visita!',
		en : 'Welcome!<br /><br />A new website containing all the latest information on language training programmes for young graduates, executives and professionals is available at this address:<br /><a href="http://www.esl-languages.com/en/language-training-professionals.htm">http://www.esl-languages.com/en/language-training-professionals.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();
});