/*var myRequest;
var fly_info_active = false;
window.addEvent('domready', function()
{
	if(Browser.ie6 && Browser.ie7){}
	else
	{
		if($('fly_info_helper_box'))
		{
			$('fly_info_helper_box').setStyle('display', 'block');

			_gaq.push(['_trackEvent', 'Teaser', $('fly_info_helper_box').getAttribute('rel'), 'Anzeige']);

			$('fly_info_helper_box').addEvent('onSuccess', function()
			{
				$('fly_info_helper_box').setStyle('display', 'none');
				if(fly_info_active != false)
				{
					window.open(fly_info_active);
				}
			});
			$('fly_info_helper_close').addEvent('click', function()
			{
				_gaq.push(['_trackEvent', 'Teaser', $('fly_info_helper_box').getAttribute('rel'), 'Schließen']);
				myRequest.send({url: '/layerhide/'});
			});
			$('fly_info_helper_link').addEvent('click', function()
			{
				_gaq.push(['_trackEvent', 'Teaser', $('fly_info_helper_box').getAttribute('rel'), 'Clickout']);	
				myRequest.send({url: '/layerhide/'});
				fly_info_active = this.getAttribute('rel');
			});
		}
	}
});

var myRequest = new Request(
{
	method: 	'post',
	urlEncoded:	true,
	headers: 	{'X-Request':'KAJAX'},
	noCache:	true,
	onSuccess: function(result)
	{
		this.result = result;
		$('fly_info_helper_box').fireEvent('onSuccess');
	}
});*/
