Overriding Page Templates per Content Type in Drupal 7

Simply put this code in your theme template.php

function yourthemename_preprocess_page(&$vars)

          {

                     if (isset($vars['node']->type)) {

                                   $vars['theme_hook_suggestions'][] = 'page__' . $vars['node']->type;

                      }

         }