/**
  * Overwrites the _isCollectionLoaded, setting it to true to prevent it
  * from loading.
  *
  * @param string $model
  * @param unknown_type $entityModel
  * @return Mage_Catalog_Model_Resource_Product_Collection
  */
 protected function _init($model, $entityModel = null)
 {
     $this->_isCollectionLoaded = true;
     return parent::_init($model, $entityModel);
 }