function recargar(idlink, descripcion){
    var objeto = '<object width="380" height="385"><param id="movie" value="http://www.youtube.com/v/'+idlink+'" name="movie"><param value="true" name="allowFullScreen"><param value="always" name="allowscriptaccess"><embed id="yt" width="430" height="385" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/'+idlink+'"></object>';
    $("#recargar").html(objeto);
    $('.comentario_video').html(descripcion);
    return false;
}

$(document).ready(function(){

//VIDEO PROMO    
    if(mostrar == 'si'){
        $.colorbox({
            iframe: true,
            height:     390,
            width:      640,
            href: "http://www.youtube.com/embed/-D3zgiIWmkA?wmode=transparent",
            transition : 'elastic',
            speed      : 500,
            opacity    : 0.7
        });
    }
    
    
//SCROLL PANE
    $('.scroll').jScrollPane({
        showArrows : true,
        autoReinitialise: true
    });

//HORIZONTAL SCROLL PANE
 var wrapWidth = $('.mas_videos a').length * 144;
    $('.mas_videos').css({width:wrapWidth});
    $('#wrap_videitos').jScrollPane({
            showArrows : true
        });


//SLIDER FRASES
    $('.frases').cycle({
        fx:     'scrollHorz',
        speed:  1000,
        timeout: 10000,
        slideExpr: 'li',
        pause: 1,
        next:   '#next',
        prev:   '#prev'
    });


//AMPLIACION NOVEDADES
    $('.accion').click(function(){
        if( $(this).hasClass('accion_cerrar') ){
            $(this).removeClass('accion_cerrar');
            $(this).parent('li').find('div.editor').slideToggle('slow');
        }else{
            $(this).addClass('accion_cerrar');
            $(this).parent('li').find('div.editor').slideToggle('slow');
        }
        return false;
    });
    //Ampliaciones agenda

    $('.accion_agenda').click(function(){
        if( $(this).hasClass('accion_cerrar_agenda') ){
            $(this).removeClass('accion_cerrar_agenda');
            $(this).parent('li').find('div.editor').slideToggle('slow');
        }else{
            $(this).addClass('accion_cerrar_agenda');
            $(this).parent('li').find('div.editor').slideToggle('slow');
        }
        return false;
    });


//AMPLIAR FRASES
    if( $('.ampliar').length > 0 ){
        $('.ampliar').click(function(){
            var id= $(this).data('id');
            $.colorbox({
                width:490,
                height:270,
                href: "sitio/ajax/frase.php?id="+id,
                transition : 'elastic',
                speed      : 500,
                opacity    : 0.7
            });
            return false;
        });
    }
    
    
//VALIDATION
    if($("#validateform").length > 0) {
        $("#validateform").validationEngine({promptPosition : 'topRight'});
    }
});// Cierro document ready
