In the template the following code controls where the header images load
<div id=”ja-headerwrap”>
<div id=”ja-header” class=”clearfix” style=”background: url(<?php echo $tmpTools->templateurl(); ?>/images/header/<?php echo $tmpTools->getRandomImage(dirname(__FILE__).DS.’images/header’); ?>) no-repeat top <?php if($this->direction == ‘rtl’) echo ‘left’; else echo ‘right’;?>;”>
My question is, how do I change this so that a particular image in this directory (../images/header) always appears first when the page loads?
I guess the key is the getRandomImage, but I dont know enough about PHP to find an alternative method to do what I want.
many thanks for any help