<?php
/*
Plugin Name: Smashing Admin Theme
Plugin URI: http://tdhedengren.com/wordpress/smashing-admin-theme/
Description: This is the Smashing Admin Theme, disguised as a plugin. Activate to make your admin
smashing!
Author: Thord Daniel Hedengren
Version: 1.0
Author URI: http://tdhedengren.com
*/
function smashing_admin() {
	$url = get_settings(siteurl);
	$url = $url . /wp-content/plugins/smashing-admin/wp-admin.css;
	echo <link rel=stylesheet type=text/css href= . $url .  />;
}

add_action(admin_head, smashing_admin);

?>