function nav(){
	$("div#menu ul li").mouseover(function() {
			$(this).find('ul:first').show();
	});
	
	$("div#menu ul li").mouseleave(function() {
		$("div#menu ul li ul").hide();
	});
	
	$("div#menu ul li ul").mouseleave(function() {
		$("div#menu ul li ul").hide();
	});
	
};

$(document).ready(function(){
	nav();

	$('#emailNewsletter').bind('focus', function() {
		if ($('#emailNewsletter').val() == this.defaultValue) {
			$('#emailNewsletter').val('');
		}
	});

	$('#emailNewsletter').bind('blur', function() {
		if ($('#emailNewsletter').val() == '') {
			$('#emailNewsletter').val(this.defaultValue);
		}
	});

	$('#emailNewsletter').keyup(function(e) {
		if (e.keyCode == 13) {
			saveNewsletter();
		}
	});

	$('#submitNewsletter').bind('click', function() {
		saveNewsletter();
	});

	function saveNewsletter() {
		$.ajax({
			type: "POST",
			url: '/inc/inc_newsletter.php',
			data: "emailNewsletter=" + $('#emailNewsletter').val(),
			success: function(data){
				$('#respuestaNewsletter').hide();
				$('#respuestaNewsletter').html(data);
				$('#respuestaNewsletter').fadeIn('slow');
			}
		});
	}

	// footer
	$('#emailUsuarioLogin').keyup(function(e) {
		if (e.keyCode == 13) {
			sendLogin();
		}
	});

	$('#passwordUsuarioLogin').keyup(function(e) {
		if (e.keyCode == 13) {
			sendLogin();
		}
	});

	$('#submitLogin').bind('click', function() {
		sendLogin();
	});

	function sendLogin() {
		$.ajax({
			type: "POST",
			url: '/inc/inc_login.php',
			data: "emailUsuario=" + $('#emailUsuarioLogin').val() + "&passwordUsuario=" + $('#passwordUsuarioLogin').val(),
			success: function(data){
				if (data == 'redirect') {
					window.location = '/sirope_savia_arce_palma/shop.php';
				} else {
					$('#respuestaLogin').hide();
					$('#respuestaLogin').html(data);
					$('#respuestaLogin').fadeIn('slow');
				}
			}
		});
	}

	// steps login
	$('#emailUsuarioLoginSteps').keyup(function(e) {
		if (e.keyCode == 13) {
			sendLoginSteps();
		}
	});

	$('#passwordUsuarioLoginSteps').keyup(function(e) {
		if (e.keyCode == 13) {
			sendLoginSteps();
		}
	});

	$('#submitLoginSteps').bind('click', function() {
		sendLoginSteps();
	});

	function sendLoginSteps() {
		$.ajax({
			type: "POST",
			url: '/inc/inc_login.php',
			data: "emailUsuario=" + $('#emailUsuarioLoginSteps').val() + "&passwordUsuario=" + $('#passwordUsuarioLoginSteps').val(),
			success: function(data){
				if (data == 'redirect') {
					window.location = '/sirope_savia_arce_palma/shop-sign2.php';
				} else {
					$('#respuestaLoginSteps').hide();
					$('#respuestaLoginSteps').html(data);
					$('#respuestaLoginSteps').fadeIn('slow');
				}
			}
		});
	}

	// steps register

	$('#nombreUsuarioRegisterSteps, #apellidoUsuarioRegisterSteps, #emailUsuarioRegisterSteps, #passwordUsuarioRegisterSteps, #passwordUsuario2RegisterSteps').keyup(function(e) {
		if (e.keyCode == 13) {
			sendRegisterSteps();
		}
	});

	$('#submitRegisterSteps').bind('click', function() {
		sendRegisterSteps();
	});

	function sendRegisterSteps() {
		$.ajax({
			type: "POST",
			url: '/inc/inc_registerSteps.php',
			data: "nombreUsuario=" + $('#nombreUsuarioRegisterSteps').val() + "&apellidoUsuario=" + $('#apellidoUsuarioRegisterSteps').val() + "&emailUsuario=" + $('#emailUsuarioRegisterSteps').val() + "&passwordUsuario=" + $('#passwordUsuarioRegisterSteps').val() + "&passwordUsuario2=" + $('#passwordUsuario2RegisterSteps').val(),
			success: function(data){
				if (data == 'redirect') {
					window.location = '/sirope_savia_arce_palma/shop2.php';
				} else {
					$('#respuestaRegisterSteps').hide();
					$('#respuestaRegisterSteps').html(data);
					$('#respuestaRegisterSteps').fadeIn('slow');
				}
			}
		});
	}

	$('#submitRegisterSteps2').bind('click', function() {
		sendRegisterSteps2();
	});

	function sendRegisterSteps2() {
		$.ajax({
			type: "POST",
			url: '/inc/inc_registerSteps2.php',
			data: "idPais=" + $('#idPaisRegisterSteps').val() + "&idProvincia=" + $('#idProvinciaRegisterSteps').val() + "&provinciaUsuario=" + $('#provinciaUsuarioRegisterSteps').val(),
			success: function(data){
				if (data == 'redirect') {
					window.location = '/sirope_savia_arce_palma/shop-sign.php';
				} else {
					$('#respuestaRegisterSteps').hide();
					$('#respuestaRegisterSteps').html(data);
					$('#respuestaRegisterSteps').fadeIn('slow');
				}
			}
		});
	}

	$('#testimonials .slide');
	setInterval(function(){
		$('#testimonials .slide').filter(':visible').fadeOut(1000,function(){
			if($(this).next('.slide').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	},10000);	

	$('#idPais').bind('change', function() {
		cambioPais();
	});

	function cambioPais() {

//var rutaAbsoluta = self.location.href;
//var posicionUltimaBarra = rutaAbsoluta.lastIndexOf("/"); 
//var rutaRelativa = rutaAbsoluta.substring( posicionUltimaBarra + "/".length , rutaAbsoluta.length );
//alert(rutaRelativa);  

//var pagina = self.location.href.match( /\/([^/]+)$/ )[1];
//alert( document.location );

		//alert(document.location); http://siropedearceypalma.com.ar/sirope_savia_arce_palma/contacto.php?PHPSESSID=178591d6d6423005d70aacacea07390e
		if (document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/shop-sign2.php' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/shop-sign2.php?' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/shop-sign.php' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/shop-sign.php?' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/login.php' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/login.php?' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/contacto.php' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/contacto.php?' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/contacto.php?mode=1' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/shop-sign2.php' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/shop-sign2.php?' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/shop-sign.php' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/shop-sign.php?' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/login.php' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/login.php?' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/contacto.php' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/contacto.php?' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/contacto.php?mode=1' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/shop-sign2.php' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/shop-sign2.php?' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/shop-sign.php' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/shop-sign.php?' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/login.php' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/login.php?' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/contacto.php' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/contacto.php?' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/contacto.php?mode=1' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/shop-sign2.php' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/shop-sign2.php?' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/shop-sign.php' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/shop-sign.php?' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/login.php' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/login.php?' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/contacto.php' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/contacto.php?' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/contacto.php?mode=1') {
			//alert('y');
			if ($('#idPais').val() == '') {
				$('#seleccionePais').fadeIn();
				$('#seleccioneProvincia').hide();
				$('#seleccioneRegion').hide();

				$('#idProvincia').val(0);
				$('#provinciaUsuario').val('');
			} else if ($('#idPais').val() == '13') {
				$('#seleccionePais').hide();
				$('#seleccioneProvincia').fadeIn();
				$('#seleccioneRegion').hide();

				$('#provinciaUsuario').val('');
			} else {
				$('#seleccionePais').hide();
				$('#seleccioneProvincia').hide();
				$('#seleccioneRegion').fadeIn();

				$('#idProvincia').val(0);
			}
		}
	}

	cambioPais();

	// empty / argentina / habilitados / no habilitados

	$('#idPaisRegisterSteps').bind('change', function() {
		cambioPaisSteps();
	});

	function cambioPaisSteps() {
		if (document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/shop2.php' || document.location == 'http://www.siropedearceypalma.com.ar/sirope_savia_arce_palma/shop2.php?' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/shop2.php' || document.location == 'http://www.siropedearceypalma.com/sirope_savia_arce_palma/shop2.php?' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/shop2.php' || document.location == 'http://www.siropedearceypalma.net/sirope_savia_arce_palma/shop2.php?' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/shop2.php' || document.location == 'http://www.siropedearceypalma.org/sirope_savia_arce_palma/shop2.php?') {

			$('#respuestaRegisterSteps').hide();


			if ($('#idPaisRegisterSteps').val() == '') {
				$('#seleccionePais').fadeIn();
				$('#seleccioneProvincia').hide();
				$('#seleccioneRegion').hide();
				$('#mensajeNoHabilitado').hide();
				$('#submitRegisterSteps2').hide();

				$('#idProvincia').val(0);
				$('#provinciaUsuario').val('');
			} else if ($('#idPaisRegisterSteps').val() == '13') {
				$('#seleccionePais').hide();
				$('#seleccioneProvincia').fadeIn();
				$('#seleccioneRegion').hide();
				$('#mensajeNoHabilitado').hide();
				$('#submitRegisterSteps2').fadeIn();

				$('#provinciaUsuario').val('');
			} else if (habilitado[$('#idPaisRegisterSteps').val()]) {
				$('#seleccionePais').hide();
				$('#seleccioneProvincia').hide();
				$('#seleccioneRegion').fadeIn();
				$('#mensajeNoHabilitado').hide();
				$('#submitRegisterSteps2').fadeIn();
			} else {
				$('#seleccionePais').fadeIn();
				$('#seleccioneProvincia').hide();
				$('#seleccioneRegion').hide();
				$('#mensajeNoHabilitado').fadeIn();
				$('#submitRegisterSteps2').hide();

				$('#idProvincia').val(0);
			}
		}
	}

	cambioPaisSteps();

	$('#carritoQ').bind('change', function() {
		updateCarrito();
	});

	$('#idEnvio').bind('change', function() {
		updateCarrito();
	});

	function updateCarrito() {
		var subtotal = $('#precio').val() * $('#carritoQ').val();
		var envio = envioReembolso = total = 0;

		$('#precioMostrar').html(formatPrice(subtotal));
		$('#cargoInfo').html('');

		if ($('#idEnvio').val() == 1) {
			envio = envioJsCa[$('#carritoQ').val()];
			envioReembolso = 0;
		} else if ($('#idEnvio').val() == 2) {
			$('#cargoInfo').html('(' + formatPrice(envioJsCr[$('#carritoQ').val()]) + ' al recibir)');
			envioReembolso = envioJsCr[$('#carritoQ').val()];
			envio = 0;
		} else if ($('#idEnvio').val() == 3) {
			envio = envioReembolso = 0;
		}

		$('#cargoDeEnvio').val(envio);
		$('#cargoDeEnvioReembolso').val(envioReembolso);

		total = subtotal + envio;
		
		$('#cargoDeEnvioMostrar').html(formatPrice(envio));
		$('#totalMostrar').html(formatPrice(total));

		$.ajax({
			type: "POST",
			url: '/inc/inc_carrito.php',
			data: "cantidad=" + $('#carritoQ').val() + "&envio=" + $('#idEnvio').val() + "&total=" + total
		});
	}

	updateCarrito();

	$("input[name='idCuotas']").bind('change', function() {
		updateCuotasMonto();
	});

	function updateCuotasMonto() {
		$('#MONTO').val(cuotasMontoJs[$("input[name='idCuotas']:checked").val()]);
		$('#CUOTAS').val(cuotasJs[$("input[name='idCuotas']:checked").val()]);

		$.ajax({
			type: "POST",
			url: '/inc/inc_carrito.php',
			data: "cuotas=" + $("input[name='idCuotas']:checked").val()
		});
	}

	function formatPrice(q) {
		return '$' + q;
	}

	$('#inputRecuperarPassword').keyup(function(e) {
		if (e.keyCode == 13) {
			sendRecuperarPassword();
		}
	});

	$('#securitycode').keyup(function(e) {
		if (e.keyCode == 13) {
			sendRecuperarPassword();
		}
	});

	$('#submitRecuperarPassword').bind('click', function() {
		sendRecuperarPassword();
	});

	function sendRecuperarPassword() {
		$('#respuestaRecuperarPassword').hide();
		$('#respuestaRecuperarPassword').html('Procesando pedido, por favor espere ...');
		$('#respuestaRecuperarPassword').fadeIn('slow');

		$.ajax({
			type: "POST",
			url: '/inc/recuperarPassword.php',
			data: "emailUsuario=" + $('#inputRecuperarPassword').val() + "&securitycode=" + $('#securitycode').val(),
			success: function(data){
				$('#respuestaRecuperarPassword').hide();
				$('#respuestaRecuperarPassword').html(data);
				$('#respuestaRecuperarPassword').fadeIn('slow');
			}
		});
	}

	$("#submitOlvidoLink").fancybox({
		'width'				: 600,
		'height'			: 520,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	$("#submitImprimir").fancybox({
		'width'				: 600,
		'height'			: 510,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});


