$(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');
	});
		
	if( $('#stoerer').length > 0 ){
		$('#stoerer').delay(500).animate({
			'top' : '123px'
		}, 2300, 'easeOutBounce');
	}
	
	if( loc.indexOf('philosophie.php') != -1 || loc.indexOf('philosophie_wv.php') != -1 || loc.indexOf('geschichte.php') != -1|| loc.indexOf('service.php') != -1 || loc.indexOf('downloads.php') != -1){
		
		$('#cursors a').bind('click', function(e){
			e.preventDefault();
			
			var buttonId			= $(this).attr('id');
			var buttonShow			= (buttonId == 'next')? 'prev' : 'next' ;
			var pos_op				= ( buttonId == 'next')? '-': '+';
			var container_width		= parseInt($('.slideshowcontainer_page:first').css('width'));
			var new_position		= pos_op+'='+(container_width+100)+'px';
			var left				= parseInt($('#slidecontainer_inner').css('left'));
			var hide				= (pos_op == '-')? 1 : 2;
			var show				= (pos_op == '-')? 2 : 1;
			
			if( left % (container_width+100) == 0 && !$('#slidecontainer_inner').is(':animated') ){
			
//				$('#imageslider_inner').animate({
//				    left: new_position
//				  }, 800, function(){
//					  // on Final
//				  });
				
				$('#left_image_'+hide).css('display', 'none');
				$('#left_image_'+show).fadeIn(1000);
				
				$('#slidecontainer_inner').animate({
				    left: new_position
				  }, 800, function(){
					  $('#cursors a').css('display', 'none');
					  $('#cursors a#'+buttonShow).css('display', 'block');
				  });
			}
			
		});
	}	
	
	
	if( loc.indexOf('/admin') == -1){
		// fancybox		
		$("a#papyrus-temp").fancybox({
			'overlayOpacity' : '0.2',
			'overlayColor' : '#ffffff',
			'showCloseButton' : false,
			'hideOnContentClick' : false,
			'width' : 1000,
			'height' : 1017,
			'autoScale' : false,
			'padding' : 0,
			'titleShow' : false
		});
		
	}else{
	/*
		// only @ BE
			var $customTextCb	= $('input#customTextCb');
			if( $customTextCb.length > 0 ){
				var $customText		= $('textarea#customText');
				var $size			= $('textarea[name=size]');
				var $nr				= $('textarea[name=nr]');
				
				function ifCustomText(){ if( $customTextCb.is(':checked') ){ $customText.removeAttr('disabled'); $('input[name=size], input[name=nr]').attr('disabled', 'true'); }else{ $customText.attr('disabled', 'true'); $('input[name=size], input[name=nr]').removeAttr('disabled') } }
				ifCustomText();
				
				$customTextCb.click(function(){
					ifCustomText();
				});
			}
	*/
		
	}
	
	
	$('#employees_show a').click(function(e){
		e.preventDefault();
		
		/*
		$('#data').slideToggle('slow', function(){
			if( $('#employees_show a').html() == 'Kontakt' ){
				$('#employees_show a').html('Anschrift');
			}else{
				$('#employees_show a').html('Kontakt');
			}
			
			$('#employees').slideToggle('slow');			
		});
		*/
		
		$('#employees').slideToggle('slow');	
		if( $('#employees_show a').html() == 'Kontakt' ){
			$('#employees_show a').html('Kontakt ausblenden');
		} else {
			$('#employees_show a').html('Kontakt');
		}
		 
	});
	
	
	
});

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