Hey,
1) In archive.php replace:
the_excerpt();
with:
// check if we got a previe picture, and which one should be taken
// (image resizing with "tim thumb" on? then we can take the big one and resize it)
$preview_small = get_post_meta($post->ID, "_preview_small", true);
$preview_medium = get_post_meta($post->ID, "_preview_medium", true);
$preview_big = get_post_meta($post->ID, "_preview_big", true);
//defaults:
$preview = $preview_medium;
$link_url = $preview_big;
$lightbox = 'singlepost';
$link = true;
//change if necessary:
// resizing? => take next sized picture
if ($k_option['general']['tim'] == "1" && $preview_medium == "")
{
$preview = $preview_big;
}
// no bigpicture? => no lightbox
if ($preview_big == "") { $lightbox = ''; $link = true; $link_url = get_permalink(); }
// the kriesi_build_image function used here checks if the image should be resized.
// the function is located in framework/helper_functions
$preview = kriesi_build_image(array('url'=>$preview,
'height'=> '273',
'width'=> '610',
'lightbox'=>$lightbox,
'link'=>$link,
'link_url'=>$link_url
));
echo $preview; // echo the preview image
the_excerpt();
2) In single.php (and in page.php and template_fullwidth.php if you like) delete following code
echo $preview; // echo the preview image
3) In custom.js adjust following code line:
$sublist.stop().css({overflow:"hidden", height:"auto", display:"none"}).slideDown(400, function()
Increase/decrease the value "400" to adjust the speed.