$(document).ready( function () {

	// logo auf 75% dichte herunterfaden
	$('.logo').fadeTo('slow', .75);

	// dropdownmenue oben initialisieren
	$('.header .navbar ul').superfish({
		autoArrows   : false,
		dropShadows  : false,
	    delay        : 400
	});
	if ($.browser.msie) $('.header .navbar ul li:last-child').css('border-bottom', '0')

	// seiten im iframe laden
//	alert($('a[href^=http://www.tirol.de], a[href^=http://192.168.2.100/tirol/01_www/frontend/tirol_de/at/]').length);
	
	$('a[href^="/at/"], a[href^="at/"]').fancybox({
		'width'				: '1024',
		'height'			: '768',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'titleShow'         : true,
		'titlePosition'     : 'inside',
		'centerOnScroll'    : true
	});
			
	// suchformular auf mindestens 2 zeichen pruefen
	$('#dropdown-search').submit(
		function () {
			if ($('#dropdown-search input:first-child').val().length < 2) {
				alert('Bitte geben Sie mindestens 2 Zeichen für die Suche ein!');
			} else {
				$('#searchlink').attr('href', $('#searchlink').attr('href')+'/'+escape($('#dropdown-search input:first-child').val()) );
				$('#searchlink').click();
			}
		}
	);


});

function setClickStats(werbeart,werbeart_id) {
	xajax_setClickStats(werbeart,werbeart_id);
}


