<?php
// $Id$

/** 
  * Implementation of hook_install(). 
  */
function administration_install() {  
  // Set a high weight so administration is called after all other hook_menus
  // which may change the default administration menu  
  db_query("UPDATE {system} SET weight = 10 WHERE name = 'administration'");
}

function administration_update_1() {
  $ret = array();
  db_query("UPDATE {system} SET weight = 10 WHERE name = 'administration'");
  return $ret;
}
