$(document).ready(function() {
	// inputs
  	$("input").focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
		
	//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);
			});
	});
	$('#product-images a').lightBox();	
	
});


//slide galería de productos	
function slideGaleriaHome(){
	$("#product-gallery li").hover(function(){
		$(this).find("img").stop().animate({
			top:-150
		}, 500);
	}, function(){
		$(this).find("img").stop().animate({
			top:0
		}, 500);
	});
}
	
//carousel banner home
function CarouselHome(){
	  $('.infinitecarousel').infiniteCarousel({
		transitionSpeed : 1000,
			displayTime : 5000,
			textholderHeight : .2,
			displayProgressBar : 1
		});
}