$(document).ready(function(){
	$('#slideshow').nivoSlider({
	});	
	/* home */
	$('.referenz.animation').hover(function(){
		$(".wp-post-image", this).stop().animate({top: '310px', left: '310px'},{queue: false, duration: 300}); }, function() {
		$(".wp-post-image", this).stop().animate({top: '0px', left: '0px'},{queue: false, duration: 300}
		);
	});
	/* referenzen */
	$('.projekt.animation').hover(function(){
		$(".wp-post-image", this).stop().animate({top: '180px', left: '180px'},{queue: false, duration: 300}); }, function() {
		$(".wp-post-image", this).stop().animate({top: '0px', left: '0px'},{queue: false, duration: 300}
		);
	});
	/* blur effekt */
	$('.blur').each(function() {
		$(this).hover(
		function() {
			$(this).stop().animate({ opacity: 0.7 }, 200);
		},
		function() {
			$(this).stop().animate({ opacity: 1.0 }, 200);
		})
	});	
	/* title entfernen */
	$('img').removeAttr("title");
});
/* slideshow */
$(window).load(function() {
    $('#slideshow').nivoSlider({
		effect: 'fade',
		slices: 10,
		animSpeed: 500,
		pauseTime: 5000,
		directionNav: true,
		directionNavHide: false,
	});
});

