/**
 * @author Fiedrich
 */

window.addEvent('domready',function(){
	
	if(!Browser.Plugins.Flash.version) {
		
		var flashContainer = $('loeweStage');
		flashContainer = flashContainer.getElement('div.loeweMainFlash');
		
		var loeweNonFlash = new Element('div', {
			'class': 'loeweNonFlash',
			'html': '<img src="clear.gif" width="972" height="448" />'
		});
		if($chk(flashContainer)) {
			flashContainer.empty();
			loeweNonFlash.inject(flashContainer);
		}
		if(homeAnimation == true) {
			var LOE_HomeLink = function(url, x, y, text) {
				var homeLink = new Element('a', {
					'href': url,
					'styles': {
						'position': 'absolute',
						'top': y,
						'left': x,
						'z-index': '75',
						'font-size': '15px'
					},
					'html': '<span style="visibility: hidden;">' + text + '</span>'
				});
				return homeLink;
			};
			var homeLinkBox = new Element('div', {
				'id': 'homeLinkBox',
				'styles': {
					'position': 'relative',
					'height': '441px'
				}
			});
			var homeLink1 = new LOE_HomeLink(window.LOE_Maintain.homeLink_1, '38px', '109px', 'mehr erfahren');
			var homeLink2 = new LOE_HomeLink(window.LOE_Maintain.homeLink_2, '38px', '379px', 'Informationen<br />bestellen');
			//if(window.console) console.log(homeLink1);
			homeLink1.inject(flashContainer);
			homeLink2.inject(flashContainer);
		}
	}
	
});
