I have swapped the three column images on the home page in index.php, but they all show up as the the first one replaced (test1.jpeg in the code below). What am I missing?
// the kriesi_build_image function used here checks if the image should be resized.
// it returns the resized image if the size is larger than the parameters provided
// the function is located in framework/helper_functions
$placeholder_image1 = get_bloginfo('template_url').'/files/test1.jpg';
#$placeholder_image2 = get_bloginfo('template_url').'/files/test2.jpg';
#$placeholder_image3 = get_bloginfo('template_url').'/files/medium1.jpg';
$placeholder_image1 = kriesi_build_image(array('url'=>$placeholder_image1,'height'=>'124','width'=>'280'));
#$placeholder_image2 = kriesi_build_image(array('url'=>$placeholder_image2,'height'=>'124','width'=>'280'));
#$placeholder_image3 = kriesi_build_image(array('url'=>$placeholder_image3,'height'=>'124','width'=>'280'));














