$(document).ready(function() {
    $('a.ventanaNueva').live('click',function(){
        window.open($(this).attr('href'), '_blank');
        return false;
    });
    
    // Catálogo
    $('#izquierda ul a.select:first').parent().next().find('ul:first').show();
    $('#izquierda ul li ul').has('a.select').last().show().parents('ul').show();
    $('#izquierda ul li ul li').has('a.select').next().find('ul').show();
    $('div.referencia:last').css('margin-right', '0');
    $('div.scrollable').css('width', ($('div.referencia').length*144)-18); //Todos los elemento menos el margin del último
    var prev = $('<a class="prev"></a>').click(function(){
        var tal = $('div.scroll').scrollTo('-=720', 500, {axis: 'x'});
        console.log(tal+'##');
    });
    var next = $('<a class="next"></a>').click(function(){
        $('div.scroll').scrollTo('+=720', 500, {axis: 'x'});
    });
    $('#referencias').prepend(prev).append(next);

    // Catálogo Virtual
    $('#cuerpo.catalogo #izquierda div.catalogoVirtual a.ventanaNueva').hover(function(){$(this).find('span').css('border-bottom', 'solid 1px #FFF')}, function(){$(this).find('span').css('border-bottom', 'solid 1px #E3253D')});

    // Contacto
    $('#formulario p input, #formulario p textarea').focus(function(){
        $(this).css('background','#e5e5e5');
    }).blur(function(){
        $(this).css('background','#f5f5f5');
    });

    // boletin Colorbox
    $('#newsletter').colorbox({
        iframe:true,
        width:810,
        height:610
    });
    $('#boletin').colorbox({
        iframe:true,
        width:810,
        height:610
    });

    // terminosYCondiciones Colorbox
    $('#terminosYCondiciones').colorbox({
        iframe:true,
        width:610,
        height:640
    });

    // usoDatos Colorbox
    $('#usoDatosColorbox').colorbox({
        iframe:true,
        width:610,
        height:640
    });

    // enviosComerciales Colorbox
    $('#enviosComercialesColorbox').colorbox({
        iframe:true,
        width:610,
        height:640
    });

    // Contacto Colorbox
    if($('div.contactoRequest').is('div')) {
        $('div.contactoRequest').show().colorbox({
            href:"div.contactoRequest",
            open:true,
            inline:true,
            width: 525,
            height: 340
        });
        $('#cboxClose').live('click', function(){
            $('div.contactoRequest').hide()
        });
    }

    // Boletin request Colorbox
    if($('a.enviado').is('a')) {
        $.ajax({
            type: 'POST',
            url: '/boletinRequest.html',
            success: function(mensaje){
                $('div.cambiar').html(mensaje);
            }
        });
        $('#cboxClose').live('click', function(){
            $('div.boletinRequest').hide()
        });
    }

    // Noticias
    $('img.small').click(function(e){
        $('a.grande').attr('title', $(this).attr('alt')).attr('href', $(this).attr('src'));
        $('img.grande').attr('alt', $(this).attr('alt')).attr('src', $(this).attr('src').replace('50', '155').replace('42', '131'));
        e.stopPropagation();
        e.preventDefault();
    });

    $('a.grande').click(function(e){
        $('img.small[src=\''+$(this).attr('href')+'\']').parent().click();
        e.preventDefault();
    });

    $('img.small').parent().colorbox({
        image: true,
        maxWidth: 800
    });
});

