$(document).ready(function(){
    $("#presentaciones a").click(function(){
        
        var href = $(this).attr('href');
        var rel = $(this).attr('rel');
        var href_presentacion = $(this).next('.id_presentacion').attr('href');

        $("#foto img").attr('src','/images/productos/thumb/'+rel);
        $.ajax({
            type: "POST",
            data: "&ajax=true",
            url: href,
            beforeSend: function(datos){
                $('#detalles_contenido').html('<div style="height:'+$('#detalles_contenido').height()/2+'px;text-align:center;padding-top:'+$('#detalles_contenido').height()/2+'px"><img src="/images/load.gif"/></div>')
            },
            success: function(datos){
                $('#detalles_contenido').html(datos);

            }
        });
        $.ajax({
            type: "POST",
            data: "&ajax=true",
            url: href_presentacion,
            beforeSend: function(datos){
                $('#ajax_ingredientes').html('<img src="/images/load.gif"/>')
            },
            success: function(datos){
                $('#ajax_ingredientes').html(datos);
            }
        });
        return false;
    });
    $(".cerrar").click(function(){
        $('#detalles').hide('slow');
        $(".detalles").fadeIn('slow');
        return false;
    });
    $(".detalles").click(function(){
        $('#detalles').show('slow');
        $(".detalles").fadeOut('slow');
        return false;
    });
    $('#r1').cycle({
            random: 1,
            timeout:  6000,
            pause: 1,
            delay: -3000
        });
    $('#r2').cycle({
            random: 1,
            timeout:  6000,
            pause: 1

        });
    var ths = $('#portada');
    ths.flash(
    {
        swf: '/flash/presentacion.swf',
        width: 636,
        height: 462,
        scale: 'noScale',
        wmode: 'transparent',
        salign: 'TL',
        menu: 'true',
        allowFullScreen: 'true',
        allowScriptAccess:'sameDomain'
    }
    );
});
