// JQUERY

$(document).ready(function() {
	
		// JQUERY : BACKGROUND =>
		
		var FullscreenrOptions = {  width: 2200, height: 1473, bgID: '#background' };
		jQuery.fn.fullscreenr(FullscreenrOptions);

		// JQUERY : MENU =>
		
		var config = {    
		     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
		     interval: 150, // number = milliseconds for onMouseOver polling interval
		     over: openDropdown, // function = onMouseOver callback (REQUIRED)
		     timeout: 150, // number = milliseconds delay before onMouseOut
		     out: closeDropdown // function = onMouseOut callback (REQUIRED)
		};

		function openDropdown(){  
			
			$('ul.current-dropdown').hide();			
			$(this).addClass("on");
			$(this).children(".dropdown").slideToggle("fast");
		}
		function closeDropdown(){
			
			$('ul.current-dropdown').show();
			$(this).children(".dropdown").slideToggle("fast", function(){$(this).parent().removeClass("on");});
			
		}
		
		$(".dropdown").hide();
		$("#nav_dienstleistungen, #nav_menschen").hoverIntent(config);
		
		// JQUERY : CAROUSEL =>
		
		window.setTimeout(function() {
			$("#carousel").carousel({
				orientation: 'vertical',
				handle: true,
				animate: 0.002,
				radius: 200
			});
		}, $.browser.safari ? 100 : 0);
		
		// JQUERY : UNTERNEHMENSGRAFIK =>
		
		$('div.button').hover(function(){
			
			$(this).stop().animate({
				
				"width": "240px",
				"height": "51px"
				
			},{queue:false,duration:200});
			
			$(this).css({
				
				"font-weight": "bold",
				"padding": "10px 10px 0px 10px",
				"margin": "0px"
			
			});
			
		}, function() {
			
			$(this).stop().animate({
				
				"width": "240px",
				"height": "41px"
				
			},{queue:false,duration:200});
			
			$(this).css({
				
				"font-weight": "normal",
				"padding": "0px 0px",
				"margin": "0px 10px"
			
			});
			
		});

		$('div.unter_links').hide();
		
		$('div.unter_1').hover(function(){
			
			$('#unter_1').hide();
			$('#unter_2').hide();
			$('#unter_3').hide();
			$('#unter_4').hide();
			$('#unter_5').hide();
			$('#unter_6').hide();
			
			$('#unter_1').show();
		
		});
		
		$('div.unter_2').hover(function(){
			
			$('#unter_1').hide();
			$('#unter_2').hide();
			$('#unter_3').hide();
			$('#unter_4').hide();
			$('#unter_5').hide();
			$('#unter_6').hide();
			
			$('#unter_2').show();
		
		});
		
		$('div.unter_3').hover(function(){
			
			$('#unter_1').hide();
			$('#unter_2').hide();
			$('#unter_3').hide();
			$('#unter_4').hide();
			$('#unter_5').hide();
			$('#unter_6').hide();
			
			$('#unter_3').show();
		
		});
		
		$('div.unter_4').hover(function(){
			
			$('#unter_1').hide();
			$('#unter_2').hide();
			$('#unter_3').hide();
			$('#unter_4').hide();
			$('#unter_5').hide();
			$('#unter_6').hide();
			
			$('#unter_4').show();
		
		});
		
		$('div.unter_5').hover(function(){
			
			$('#unter_1').hide();
			$('#unter_2').hide();
			$('#unter_3').hide();
			$('#unter_4').hide();
			$('#unter_5').hide();
			$('#unter_6').hide();
			
			$('#unter_5').show();
		
		});
		
		$('div.unter_6').hover(function(){
			
			$('#unter_1').hide();
			$('#unter_2').hide();
			$('#unter_3').hide();
			$('#unter_4').hide();
			$('#unter_5').hide();
			$('#unter_6').hide();
			
			$('#unter_6').show();
		
		});

});
