/**
 * @author
 */
$(document).ready(function(){

    $(".read_news1").click(function(){
        $(".read_news_loading").show();
        $("#read_news").slideUp('slow');
        $(".read_news_content").html('');
        
        $.getJSON("index.php/ajax/news/read_news/" + $(this).attr('rel'), function(json){
            jQuery.each(json, function(i, app){
                $(".read_news_content").html(app['content']);
                $(".read_news_content").append(app['url']);
                $(".read_news_content_title").html(app['title']);
            })
        });
        $(".read_news_loading").hide();
        $("#read_news").slideDown('slow');
        return false;
    });
    
	$('.cbox_view').colorbox();
    
});
