$(document).ready(function() {	

		/* elements for hide */
		$('#metanav li:last-child').css('background','none');
		$('#footer li:last-child').css('border','none');
		
		/* input focus parent element */
		$("input#suche").focus(function () {
         	$(this).parent('#volltextsuche').css('background-image', 'url(/pictures/searchfield-bg-hover.png)');
		});
		$("input#suche").focusout(function () {
         	$(this).parent('#volltextsuche').css('background-image', 'url(/pictures/searchfield-bg.png)');
		});
		
		$('#toggle').show();
		
		/* tooltip configurations */
		$('#scrollup').qtip(
		   		{
		     		content: { text: 'scroll up to page begin' }, 
		  			position: {corner: {target: 'topRight', tooltip: 'bottomLeft'}},
		  			style: {name: 'light' },
		  			hide: { effect: { type: 'fade' } },
		  			show: { effect: { length: 300 } },
		  			hide: { delay: 1250 }
		});
		$('#toggle a').qtip(
		   		{
		     		content: { text: 'toggle down/up' },
		  			position: {corner: {target: 'topRight', tooltip: 'bottomLeft'}},
		  			style: {name: 'light' },
		  			hide: { effect: { type: 'fade' } },
		  			show: { effect: { length: 300 } },
		  			hide: { delay: 1250 }
		});
					  
		/* scrollup call function */
		$('#scrollup').click(function() {
			$.scrollTo( $('#wrapper'), 1000 );
		});
		
		/* toggle function */
		$(".toggle").toggle(
			function () {
					$("#slider.nivoSlider").animate({
						height: "336px"}, 350 );
						$('a.toggle').css('background-image', 'url(/pictures/toggle-up.png)');
				},
				function () {
					$("#slider.nivoSlider").animate({
						height: "200px"}, 650 );
						$('a.toggle').css('background-image', 'url(/pictures/toggle-down.png)');
				}
		);	
		
});
