/* /////////////////////////////////////////////////////////////////////////
Javascript - NUTRICION 3X2
Realizacion: digival.es 
joseignacio.marcos@digival.es
///////////////////////////////////////////////////////////////////////// */
function iniciaNutricion(){

	if($('#opcionesProducto').length){ 
		
		$('#opcionesProducto').css('opacity', '0');
		$('#opcionesProducto').css('left', '50%');
		$('#opcionesProducto').css('margin-left', '-215px');
		$('#opcionesProducto').css('top', '-'+$('#opcionesProducto').height()+'px');
		
		$('a.comprarProd').click( function(event){
			event.preventDefault();
			$('#opcionesProducto').animate({ 
		        opacity: 1,
		        top: "50%",
				  marginTop: '-'+($('#opcionesProducto').height()/2)+'px'
		      }, 800 );
		});
		
		$('#opcionesProducto span').click( function(){
			$('#opcionesProducto').animate({ 
		        opacity: 0,
		        top: '-'+$('#opcionesProducto').height()+'px'
		      }, 500 );
		});
		
		/*var inicio = '-'+($('#opcionesProducto').height()/2)+'px';
		$(window).scroll(function (){ 
			$('#opcionesProducto').css('margin-top', parseInt(inicio)+$(window).scrollTop()+'px');
		});*/

	}// fin
	
	//CAJA DE BUSQUEDA ------------------------------------------------------------------------------------
	if($('#textoBuscar').length){ 
		$('#textoBuscar').focus(function (){
			$('#textoBuscar').val('');
		});
		 $('#textoBuscar').blur(function () {
        	if($('#textoBuscar').val()=='' || $('#textoBuscar').val()==' ') $('#textoBuscar').val('Buscar');
    	});
	}//fin del input de buscar ----------------------------------------------------------------------------
	
} //FIN DE INICIANUTRICION

/* -------------------------------------------------------------------------------------------
LOAD -----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------- */ 
$(document).ready(iniciaNutricion);
