/**
  * espresso_get_object_css_class - attempts to generate a css class based on the type of EE object passed
  *
  *
  * @param EE_Base_Class $object the EE object the css class is being generated for
  * @param  string $prefix added to the beginning of the generated class
  * @param  string $suffix added to the end of the generated class
  * @return string
  */
 function espresso_get_object_css_class($object = NULL, $prefix = '', $suffix = '')
 {
     return EEH_Template::get_object_css_class($object, $prefix, $suffix);
 }