Seeing as I was just editing that page...
Look in skin1/modules/Fast_Lane_Checkout/checkout_2_method.tpl
For...
Code:
<td width="20%" nowrap="nowrap" style="padding-right: 15px;"><label for="pm{$payment.paymentid}"><b>{$payment.payment_method}</b></label></td>
<td width="80%">{$payment.payment_details}</td>
Do something like this...
Code:
<td width="20%" nowrap="nowrap" style="padding-right: 15px;"><label for="pm{$payment.paymentid}"><b>{$payment.payment_method}</b></label></td>
<td width="80%">{$payment.payment_details}
{if $payment.paymentid eq "10"}<img src="{$ImagesDir}/visa.gif" border="0" />
{elseif $payment.paymentid eq "11"}<img src="{$ImagesDir}/mastercard.gif" border="0" />
{elseif $payment.paymentid eq "12"}<img src="{$ImagesDir}/paypal.gif" border="0" />
{/if}
</td>
or...
Code:
<td width="20%" nowrap="nowrap" style="padding-right: 15px;"><label for="pm{$payment.paymentid}"><b>{$payment.payment_method}</b></label></td>
<td width="80%">{$payment.payment_details}
{if $payment.payment_details eq "Visa"}<img src="{$ImagesDir}/visa.gif" border="0" />
{elseif $payment.payment_details eq "Mastercard"}<img src="{$ImagesDir}/mastercard.gif" border="0" />
{elseif $payment.payment_details eq "PayPal"}<img src="{$ImagesDir}/paypal.gif" border="0" />
{/if}
</td>
Upload your images to /skin1/images