//alert('start');

		
		  
$(document).ready(function() {

//Galerie aktivieren
  jQuery('#mycarousel').jcarousel({
        easing: 'BounceInOut',
        animation: 2000,
       scroll: 7
    });
	$('#mycarousel img').click(function(evt) {
		evt.preventDefault();
		var bildPfad = $(this).attr('src');
		var altesBild = $('#foto img');
		var neuesBild = $('<img src="' +bildPfad+'">');
		neuesBild.hide();
		$('#foto').prepend(neuesBild);
		neuesBild.fadeIn(1000);
		altesBild.fadeOut(1000,function(){
			$(this).remove();
		});
	});
}); // Ende Ready

jQuery.easing['BounceInOut'] = function (p,t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t + b;
return -c/2 * ((--t)*(t-2) - 1) + b;
};
function setcookie(e){
//alert('setcookie');
   p = e.clientY;
   $.cookie('the_cookie',p);
}// JavaScript Document
