/*Any html tags can go in the htmlString variable, you just keep adding 
  the html String += whatever lines. 
  Created 22 November 2007, Steve Merrill - Merrill.org
*/ 

var    htmlString = "<a href='/council/' title='Clean it Up'><h3>Clean it Up</h3></a>"; 
       htmlString += "<ul>";
       htmlString += "<li><a href='oops.html' title='The best ingredients'>The Best Ingredients</a></li>";
       htmlString += "<li><a href='oops.html' title='Make it shine better than new.'>Make it shine better than new!</a></li>";
       htmlString += "</ul>";
       htmlString += "<p class='sublinks'><a href='oops.html' title='More of making it shine'>More</a><a href='http://www.rvtricks.com/oops.html' title='Subscribe to feed of the washing an RV' class='last webFeed'><img src='images/feed-icon-12x12.gif' alt='Subscribe to feed of the washing an RV' /></a></p>";

document.write(htmlString);
