$banners=Array();
$banners['handbag']='<a href="http://handbags.faux">Buy Hand Bags</a>';
$banners['high.heels']='<a href="http://myclothingshop.faux">Clothing Rocks</a>';
// ....
if($postags=get_the_tags()){
foreach($postags as $the_tag){
if(isset($banners[$the_tag->name])){
echo $banners[$the_tag->name];
// break;
}
}
}