A quick announcement system where a new tab is added next to the "Members" tab, and when you hover over it, news will appear below the "Welcome to SMF For Free" text right above the tabs. When your mouse leaves the news area (the added news), it will collapse.
Headers<script src="/jquery.js"></script>
Footers<script type="text/javascript">
/*Vitality - TCZ|SMFforfree Support|Revolution X*/
var thenewnews="THIS IS THE NEWS!";
$("td.maintab_back:contains('Members')").after("<td id='thetab' class='maintab_back' style='cursor:pointer'>News</td>");$("td.titlebg2:contains('Welcome to SMF For Free')").append("<div id='thenews' style='display: none;'><br />"+thenewnews+"</div>");$("#thetab").mouseover(function(){$("#thenews").show();});$("#thenews").mouseout(function (){$("#thenews").hide();});
</script>
Quickly edit the line
var thenewnews="THIS IS THE NEWS!";
with the news you would like to have shown. Edit the part between the " ".
Enjoy!