// Bildübergänge
$(document).ready(function() {
	$('.fadeThis').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(500, 1);
	  }, function () {
	    $span.stop().fadeTo(300, 0);
	  });
	});
	// get rid of the text
	$('.fadeThis > .hover').empty();
});

// fancybox
$(document).ready(function() {
	$('a.jqfancybox').fancybox({
		'titleShow': false
	});
});

// Galerie

$(document).ready(function() {   
    $(".groesser").mouseover(function(){ $(".groesser").stop().animate( { width:"244px", height:"196px", left:"-15px", top:"35px"}, 300 ); });
    $(".groesser").mouseout(function(){ $(".groesser").stop().animate( { width:"215px", height:"173px", left:"0px", top:"51px"}, 300 ); });
       
    $(".groesser2").mouseover(function(){ $(".groesser2").stop().animate( { width:"244px", height:"196px"}, 300 ); });
    $(".groesser2").mouseout(function(){ $(".groesser2").stop().animate( { width:"215px", height:"173px"}, 300 ); });
});

