/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var _raek_info = {

    ajax : "heap/plugins/Raek_info/publ/ajax/",

    view_event : function(id){

        var value = {
            id : id
        };

        $.get(this.ajax + "info_view_whole_event.php", value, function(data){
            
            $("#raek_info_area").fadeOut('slow',function(){
                
                $("#raek_info_area").html(data).fadeIn();
                
            })

        });

    },

    view_list : function(){

        $.get(this.ajax + "info_get_list.php", function(data){

            $("#raek_info_area").fadeOut('slow',function(){

                $("#raek_info_area").html(data).fadeIn();

            })

        });


    }
}

