$(document).ready(function(){
	
	var loc = document.location.href;
	var navSelector = 'ul.subnav';
	var srcPraefix	= './';
	if( loc.indexOf('/admin') != -1 || loc.indexOf('filialen') != -1 || loc.indexOf('produkte') != -1 || loc.indexOf('marken') != -1 ){
		navSelector = 'ul.subnav';
		srcPraefix	= '../';
	}

	$('ul.subnav').not('.singlerow').each(function(){
		$('li:first', this).css({
			'background-image' : 'url('+srcPraefix+'img/layout/nav_bg_top.png)',
			'height' : '20px',
			'background-position' : 'left top'			
		}).children('a').css({
			'position' : 'relative',
			'top' : '5px'
		});
		
		$('li:last', this).css({
			'background-image' : 'url('+srcPraefix+'img/layout/nav_bg_bottom.png)',
			'height' : '23px',
			'background-position' : 'left bottom'
		});
	});
	
	
	$('li.subnav').hover(function(){
		$('ul.subnav', this).css('display', 'block');
	}, function(){
		$('ul.subnav', this).css('display', 'none');
	});
		

	
	$('a#employees_show').click(function(e){
		e.preventDefault();
		
		$('#employees').slideToggle('slow');	
		if( $('#employees_show a').html() == 'Kontakt' ){
			$('#employees_show a').html('Kontakt ausblenden');
		} else {
			$('#employees_show a').html('Kontakt');
		}
		 
	});
	
	
	if( $('#stoerer').length > 0 ){
		$('#stoerer').delay(500).animate({
			'top' : '100px'
		}, 2300, 'easeOutBounce');
	}
	
	
});

function trigger_papyrus() {
	$('a#papyrus-temp').trigger('click');
}
