$(document).ready(function() {
	$('#mycarousel').jcarousel({
        auto: 2,
        wrap: 'last'
    });
	
	$('#mnu-productos').mouseenter(function(){
		$(this).animate({'padding-top':6,'height':59},300);
		$('#mnu-productos p').animate({'margin-top':0},300);
	}).mouseleave(function(){
		$(this).animate({'padding-top':40,'height':25},300);
		$('#mnu-productos p').animate({'margin-top':10},300);
	});
	
	$('.item-producto').each(function(n){
		$('.item-producto:eq(' + n + ')').mouseenter(function(){
			$('.item-producto-detalle:eq(' + n + ')').animate({'bottom':0},300);
		}).mouseleave(function(){
			$('.item-producto-detalle:eq(' + n + ')').animate({'bottom':-39},300);
		});;
	});
	
	$('.item-producto-relacionado').each(function(n){
		$('.item-producto-relacionado:eq(' + n + ')').mouseenter(function(){
			$('.item-producto-detalle:eq(' + n + ')').animate({'bottom':0},300);
		}).mouseleave(function(){
			$('.item-producto-detalle:eq(' + n + ')').animate({'bottom':-35},300);
		});;
	});
	
});
