$this->_productCollection = Mage::getModel('catalog/product')->getCollection()
->addAttributeToFilter('manufacturer',array(
"eq",'43')
)
);
This fetches the products of a certain manufacturer, based on the attribute's id, which is a number.
How can I modify this to get the products of a certain manufacturer (or attribute), but with the attribute's value, and not the id?