//----------------------------SLIDER NAV RECETAS 
// DOM Ready
$(function(){
	$('#slider').anythingSlider({
	 autoPlay : true,
	 delay               : 5000, 
	 navigationFormatter : function(i, panel){
	return ['MENÚ ESPECIAL', 'PASO A PASO', 'RECETA LIGHT', 'RECETA TRADICIONAL', 'Test'][i - 1];
		 }
	});

	$('#formLogin').live('submit', function(){
		var t = $(this);
		$.post(
			t.attr('action'),
		    {
		        'txtCampo1' : $('#txtCampo1').val(),
		        'txtCampo2' : $('#txtCampo2').val()		        
		    },
		    function(response){
		    	if(response.success){
		    		$('#navUser').empty().prepend('Hola, ' + response.data.nombre);
		    		}
		    	else if(response.error){
						$('#registradtexto1').empty();
						$('#registradtexto2').empty();
						$('#registradtexto3').empty();						
						if (response.position==1)
						{
							$('#registradtexto1').prepend(response.message);
						}
						if (response.position==2)
						{
							$('#registradtexto2').prepend(response.message);
						}
						if (response.position==3)
						{
							$('#registradtexto3').prepend(response.message);
						}						
		    		}
		    	}
		    )
		return false;
		});	
});

