jQuery.noConflict();

jQuery(function() {
    /* Set the width of the body to allow for horizontal scrolling. */
    var width = 10;
    jQuery("#entries img").each(function() {
        width += jQuery(this).width()+10; 
    });
    jQuery("#entries").css("width", width);
});