var HOME = new clsHOME();
function clsHOME() {

    this.place_detail = function place_detail() {

        var loader = '<img alt="processing ..." src="blank.gif" class="i_loader" />';

        $("#td_place_detail").html(loader);
        $.post("?m=home&async=place_detail", {t : (new Date).getTime()}, function(r){

            $("#td_place_detail").html(r);
        });
    }

    this.places = function places() {

        var loader = '<img alt="processing ..." src="blank.gif" class="i_loader" />';

        $("#td_places").html(loader);
        $.post("?m=home&async=places", {t : (new Date).getTime()}, function(r){

            $("#td_places").html(r);
        });
    }    
}

$(function(){

    if(SECTION == "main") {
        HOME.places();
        HOME.place_detail();
    }    
});




