/**
 * LoginAnnouncements
 * Sets an optional announcement on the @task login screen
 * 
 * LoginAnnouncements.setTitle - Sets the text in the title - H3 (Orange, bold, 14px)
 * LoginAnnouncements.setSubTitle - Sets the text in the subtitle - H4 (Bold, 12px)
 * LoginAnnouncements.setBody - Sets the text in the body - P (12px)
 * LoginAnnouncements.setLink - Sets the link href and link text.  Link text is optional (will use link href otherwise).  Appears as a button.
 * 
 * Notes: No tags allowed.  All tags are stripped except BR tags.
 **/

if (typeof LoginAnnouncements !== "undefined") {
//var e = DOM.getDescendant(DOM.$("layout-announcements"), "A"); if (e) e.style.zIndex=1;	
LoginAnnouncements.setTitle("Final Days to Register.");
LoginAnnouncements.setSubTitle("WorkOut | Work Management Summit 2011");
LoginAnnouncements.setBody("February 7-10 | Salt Lake City, Utah");
LoginAnnouncements.setLink("http://www.attask.com/workout/?o=login010311", "Learn More");
}

