/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function listarPromociones(){
$.post("cgi/procesa.php", {action: "listarPromociones"},
        function(data){
           $("#promociones").empty();
           $("#promociones").html(data);
           $(".mostrarPromo").click(mostrarPromocion);
 });

}

function mostrarPromocion(){
 $("#interact").empty();
 $(document).attr("title",":: Lucas Terry - Promos y precios ::");
 $.post("cgi/procesa.php", {action: "traerPromocion",id: $(this).attr("id")},
        function(data){
           $("#interact").append('<div style="font-family:Arial;font-size:27px;color:#666666;margin-bottom:5px;border-bottom:1px solid #666">:: promociones <img src="img/arrow.jpg"/> ::</div>');
           $("#interact").append($("#promociones").clone());
           //$("#interact").append($("#promociones").html);
           $("#interact").append(data);
 });
 
}
 function mostrarPromosYPrecios(){
 $("#interact").empty();
 $(document).attr("title", ":: Lucas Terry - Promos y precios ::");
 $.post("cgi/procesa.php", {action:"traerPromosYPrecios"} ,
        function(data){
           $("#interact").append('<div style="font-family:Arial;font-size:27px;color:#666666;margin-bottom:5px;border-bottom:1px solid #666">:: promociones <img src="img/arrow.jpg"/> ::</div>');
           $("#interact").append($("#promociones").clone());
           $("#interact").append(data);
 });

}
