// Copyright (c) 2008 by Devise LLC.  www.devise.com

// Smash this straight into the document so the logo link text will be invisible
// initially
document.write('<style type="text/css">#logo_inner { color: white; }</style>')

// Page is loaded (including images, if they're enabled).  Now reset the color to make
// the link visible to browsers with images disabled
Event.observe(window, 'load', function() {
	$('logo_inner').setStyle({color: "#330000"})
})