$(function(){
	$('.promo li:has(.part2 a)').hover(
		function(){
			$(this).find('.part1 img').stop().animate({height: '50px'}, 1000, function() {
				$(this).parent().parent().find('.part2').fadeIn(500);
			});
		},
		function(){
			$(this).find('.part1 img').stop().animate({height: '124px'}, 1000, function() {
				$(this).parent().parent().find('.part2').hide();
			});
		}
	);
	
	$('.promo ul').jcarousel({visible: 5, scroll: 1, wrap: 'last'	} );

});
