



function pageLoaded() {
    
    startGallery();
    
    if (jQuery('.post_data_body').length > 0)
        {
            var height = 0;
            jQuery('.post_data_body').each(function(){
                if (jQuery(this).height() > height)
                    {
                        height = jQuery(this).height();
                    }
            })
            
           jQuery('.post_data_body').height(height); 
        }

}; 

