$(document).ready(function() {	
	//menu hover
	$('#nav a').each(function(){
		$(this).hover(
			function(){
				$(this).animate({
					paddingLeft: '5px',
					backgroundColor: '#FD006B',
					color: '#ffffff'
				}, 500);
			},
			function(){
				$(this).animate({
					paddingLeft: '0px',
					backgroundColor: '#ffffff',
					color: '#000000'
				}, 500);
			});
	});	
	
});


//slide galería de productos	
$(document).ready(function(){
	$("#product-gallery li").hover(function(){
		$(this).find("img").stop().animate({
			top:-170
		}, 500);
	}, function(){
		$(this).find("img").stop().animate({
			top:0
		}, 500);
	});
});
$(window).load(function() {
	$('body').nivoZoom();
});
$(function(){
	$('.infinitecarousel').infiniteCarousel({
		transitionSpeed: 800,
		displayTime: 4000,
		displayProgressBar: true,
		displayThumbnails: false,
		showControls: false
	});
});
