

jQuery(document).ready(function() {

    jQuery('#my_carousel').jcarousel({
    	scroll: 1,
    	animation: 1000,
    	visible: 5
    	});
    jQuery('.jcarousel-skin-tango').jcarousel({
    	scroll: 1,
    	animation: 1000,
    	visible: 5
    	});        

   $("li.galeriebild").hover(function() {

   

     if ($(this).is(":first-child")) {



    $(this).find('img').addClass("hover").stop() 

		.animate({

			marginTop: '-20px', 

			marginLeft: '0px',

			top: '50%',

			left: '50%',

			width: '139px', 

			height: '90px' 

		

	  }, 200)

	}

	else

   

   if ($(this).is(":last-child")) {



    $(this).find('img').addClass("hover").stop() 

		.animate({

			marginTop: '-20px', 

			marginLeft: '-60px',

			top: '50%',

			left: '50%',

			width: '139px', 

			height: '90px' 

		

	  }, 200)

	}

	else{

	 $(this).find('img').addClass("hover").stop() 

		.animate({

			marginTop: '-20px', 

			marginLeft: '-25px',

			top: '50%',

			left: '50%',

			width: '139px', 

			height: '90px' 

		

	  }, 200)

		

		

		

		}; 

	} , function() {

	 

	$(this)

     .find('img').removeClass("hover").stop()  

		.animate({

			marginTop: '0', 

			marginLeft: '0',

			top: '0',

			left: '0',

			width: '80px', 

			height: '51px' 

			

		}, 400);

	

	

});    

});



//.animate ({ width: "139px", height: "90px"}, 100)

//.animate ({ width: "79px", height: "51px"}, 300)


