/*window.addEvent('domready', function() {
	var req = new Request({
		url: 'ajax/script.php',
		onSuccess: function(txt) {
			txt = txt.split('|');
			//if(txt[0] == '82.126.129.231') {
				var myurl = window.document.URL;
				myurl = myurl.replace('http://www.flyyourbody.com/', '');
				myurl = myurl.split('/');
				if(Cookie.read('msg') != 'true') {
					if(myurl[0] == 'fr' && myurl[0] != '')
						var msgFR = 'Les bureaux de FLY YOUR BODY seront fermés du jeudi 24 décembre 2009 au dimanche 3 Janvier 2010.<br/>Notre boutique en ligne sera totalement opérationnelle pendant cette période.<br/>Cependant les commandes ne seront traitées et expédiées qu\'à notre retour le 4 janvier 2010.<br/><br/><b>Joyeux Noël et Bonne Année !</b>';
					else if(myurl[0] == '' && txt[1] == 'fr')
						var msgFR = 'Les bureaux de FLY YOUR BODY seront fermés du jeudi 24 décembre 2009 au dimanche 3 Janvier 2010.<br/>Notre boutique en ligne sera totalement opérationnelle pendant cette période.<br/>Cependant les commandes ne seront traitées et expédiées qu\'à notre retour le 4 janvier 2010.<br/><br/><b>Joyeux Noël et Bonne Année !</b>';
					else
						var msgFR = 'FLY YOUR BODY will be off from thursday, Dec. 24nd – to Sunday, Jan. 3th.<br/>If you would like to place an order during our break, our website will be fully operational.<br/>However, your order will not be picked until the 4th January.<br/><br/><b>Merry Christmas and Happy New Year!!</b>';
					var fd = new Element('div', {
						id: 'fd',
						styles: {
							'position': 'absolute',
							'width': '100%',
							'height': '810px',
							'background': '#fff',
							'top': '0',
							'left': '0',
							'opacity': '0.5'
						}
					});
					fd.inject($$('body')[0]);
					var msg = new Element('div', {
						id: 'msg',
						html: '<img src="http://www.flyyourbody.com/ajax/top.jpg"/><div id="msg2">' + msgFR + '</div><img src="http://www.flyyourbody.com/fileadmin/images/interface/produit3.jpg" />',
						styles: {
							'position': 'absolute',
							'width': '440px',
							'height': '200px',
							'top': '50%',
							'left': '50%',
							'margin-left': '-220px',
							'margin-top': '-100px',
							'cursor': 'pointer'
						}
					});
					msg.inject($$('body')[0]);
					$('msg2').setStyles({
						'background': 'url(http://www.flyyourbody.com/fileadmin/images/interface/produit2.jpg) repeat-y',
						'color': 'red',
						'padding': '15px',
						'font-size': '11px',
						'text-align': 'center'
					});
					$('msg').addEvent('click', function() {
						this.fade('out');
						$('fd').fade('out');
					});
					$('fd').addEvent('click', function() {
						this.fade('out');
						$('msg').fade('out');
					});
					Cookie.write('msg', 'true');
				}
			//}
		}
	});
	req.send();
});*/