/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function periodical() {
    $('#pulsate').effect('scale', { percent: 105 }, 200);
    $('#pulsate').effect('scale', { percent: 95 }, 200);
    $('#pulsate').width(150);
}


$(document).ready(function() {
     $("input#input_puntosventa").click(function() {
         if ($(this).val().match(/^Indica tu localidad o.*$/))
            $(this).val("");
     });

     var pulsate = setInterval(periodical, 1000);


    /* updated: click clear */
      $('#pulsate').click(function() {
        clearInterval(pulsate);
      })
      
     $("img#buscadorHomePtsVenta").click(function() {
        value = $("input#input_puntosventa").val();
        if (value != null && trim(value) != "") {
            new_action = '/Productos/Puntos-de-venta/' + $("input#input_puntosventa").val();
	} else {
            new_action = '/Productos/Puntos-de-venta.html';
	}
	document.location.href = new_action;
     });

     $("div#ventanaBases").hide();

     $("div#bot_ver_bases_electrodomesticos").click(function() {
            $("div#ventanaBases").load('/web/club/components/PromoElectrodomesticos/bases.html');
            $("div#ventanaBases").center();
            $("div#ventanaBases").show();
    });

    $("div#cerrar_bases").click(function() {
            $("div#ventanaBases").hide();
    });
    

     
});
