Oh, right. The setting I mentioned before is for when individual products are marked as Call For Price.
You'll need to change this setting:
Code:
define('TEXT_SHOWCASE_ONLY','Contact Us');
The smartest way to do that is to create a new file at /includes/languages/YOUR_TEMPLATE_NAME_HERE/english.php and just put that line in it, like this:
Code:
<?php
// my custom language definitions
define('TEXT_SHOWCASE_ONLY','<img src="blah.jpg" alt="Contact Us" />');
And alter the text/html according to whatever you want it to be.