function pageFunctions(){
    pageTextSwitch();
    listPlaces();
}

function pageTextSwitch(){

    $("#block_text_left li").each(function(i){
        $(this).html( $(this).find("a").html() );
        $(this).addClass("cursor");
    });
    
    $("#block_text_left li").click(function(){

        $("#block_text_left").find(".black").removeClass("black").addClass('grey');
        $(this).removeClass("grey").addClass("black");
            
        $.get(
            $(this).attr("rel"),
            {}, 
            function(data){
                $("#block_image").html($(data).html());
                $("#block_text_right").html($(data).find("#block_text_right").html());
            }
        );
        
    });   
}
