$(function(){
    $(".ver_t").corner('4px');
    $('.ver_out').disableTextSelect();
    $(".ver_t").click(function(){
        if ($(this).next('.ver_b').is(':visible')) {
            $(this).uncorner().corner("4px");
            $(this).next('.ver_b').hide();
        } else {
            $(this).uncorner().corner("round tl tr 4px");
            $(this).next(".ver_b").corner("round bl br tr 4px");
            $(this).next(".ver_b").children(".ver_i").corner("4px");
            $(this).next('.ver_b').show();
        }
    });
        
    $("#content_col_left_inner .sp_play").bind('click',function(){
        $(this).parent().parent().nextAll('.sp_tabs').show();
        $(".opg_panel").addClass('open');
        var sid = $(this).attr('sid');
        window.parent.player.play_by_id(sid);
        return false;
    });
    
    $("#content_col_left_inner .opg_panel").click(function(){
        var $this = $(this);
        var spt = $this.parent().nextAll('.sp_tabs')
        if ($this.hasClass('open')) {
            spt.hide();
            $this.removeClass('open')
        } else {
            spt.show();
            $this.addClass('open')
        }
        return false;
    });
    
    
});

