$(document).ready(function() {

	/**
	 * Menü
	 */
	
	// ** Hover Effekt **
	
	$('.btn')
	.css( {backgroundPosition: "0 0"} )
	.click(function(){
		$(this).blur();
	})
	.mouseover(function(){
		//$(this).stop().animate({backgroundPosition:"(0 -31)"}, {queue:false, duration:300, easing: 'easeOutBounce'})
		$(this).stop().animate({backgroundPosition:"(0 -31)"}, {duration:300})
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:100, complete:function(){
			$(this).css({backgroundPosition: "0 0"})
		}})
	})

	// ** Springender Kreis **

	setTimeout(function() { $('.btn-arrow').animate({backgroundPosition:"(0 0)"}, {queue:false, duration:800, easing: 'easeOutBounce'}); }, 100);

	
	/**
	 * Bild Slider
	 */

	$("#image").easySlider({
		controlsShow: false,
		speed: 800,
		auto: true,
		pause: 3000,
		continuous: false
	});
	
});
