Add body classes to Drupal
/**
* Preprocess html;
* add page-pagname classes to the body element
*/
function hook_preprocess_html(&$vars) {
$vars['attributes_array']['class'][] = $vars['classes_array'][] = 'page-' . drupal_html_class(drupal_get_title());
}