/**
 * Put that top color bar up there then clear up the object.
 * Did this as javascript because I didn't want to mess with the
 * markup to put that up there.
 *
 * @author johnbohn
 */
var TopColorBar = {
	
	init: function(){
		$("body").append('<div id="top-color-bar"></div>')
	}
	
};

TopColorBar.init();
TopColorBar = null;
