window.addEvent('domready', function() { 				 
	var popup = aktionspopup();
	$('kopfbereich').setStyle('position','relative');
	$('kopfbereich').adopt(popup);
	popup.set('tween', {duration: 500});
	popup.tween('opacity',1);
});

function aktionspopup()
{
	//var bild = 'fileadmin/js/aktionpopup/gutschein.png';
	var bild = 'fileadmin/js/aktionpopup/10jahre.jpg';
	var close = 'fileadmin/js/aktionpopup/schliesen.png';
	if( Browser.Engine.trident && Browser.Engine.version < 5 ){
		//bild = 'fileadmin/js/aktionpopup/gutschein.gif';
		bild = 'fileadmin/js/aktionpopup/10jahre.jpg';
		close = 'fileadmin/js/aktionpopup/schliesen.gif';
	}
	
	var popup = new Element('div', {
								'id': 'aktionspopup', 
								'styles': { 
									'position':'absolute',
									'top':'50px',
									'left':'200px',
									'opacity':20, 
									'cursor':'pointer' 
								}
							});
	popup.adopt( new Element('img', {
							 	'src': bild , 
								'border': '0', 
								'events':{ 
									'click': function(){
										//window.location.href = 'http://www.juffing.at/de/preise/gutscheine/';
										window.location.href = 'http://www.lantech.at/de/news/ansicht/10-jahre-lantech/corts/';
									} 
								} 
							}));
	popup.adopt( new Element('img', { 
							 	'src': close , 
								'border': '0',
								'styles': {
									'position':'absolute', 
									'top':'20px', 
									'left':'15px'
								}, 
								'events': { 
									'click': function(){
										popup.set('tween', {duration: 500});
										popup.tween('opacity',0);
									} 
								} 
							}));
	return popup;
}
