//Function to change the text and background image for the home page's feature box
//JMA 11/29/06
function setFeature(feature) {
	//set the content
	var content = new String("");
	var bgImage = new String("");
	
	switch(feature) {
		case "clerk":
			content="<h2>About the Clerk's Office</h2>"
				+ "<ul>"
				+ "	<li><a href='/about/duties.html'>Duties of the Clerk</a></li>"
				+ "	<li><a href='/about/history.html'>History of the Clerk's Office</a></li>"
				+ "	<li><a href='/about/offices.html'>Offices under the Clerk</a></li>"
				+ "	<li><a href='/about/solicit.html'>Solicitations & Important Forms</a></li>"
				+ "	<li><a href='/about/press/index.html'>Press Releases</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_clerk.jpg";
			break;
			
		case "mem":
			content="<h2>Member Information</h2>"
				+ "<ul>"
				+ "	<li><a href='/member_info/index.html'>Member Directory</a></li>"
				+ "	<li><a href='/redirect.html?url=http://www.house.gov/writerep/&title=Write+Your+Representative'>Representatives' Contact Information</a></li>"
				+ "	<li><a href='/member_info/cong.html'>Congressional Profile</a></li>"
				+ "	<li><a href='/member_info/electionInfo/index.html'>Election Statistics</a></li>"
				+ "	<li><a href='/member_info/vacancies.html'>Vacant Districts</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_mem.jpg";
			break;
		
		case "comm":
			content="<h2>Committee Information</h2>"
				+ "<ul>"
				+ "	<li><a href='/committee_info/index.html'>Committee & Subcommittee Rosters</a></li>"
				+ "	<li><a href='/redirect.html?url=http://www.rules.house.gov/comm_jur_proc.htm&title=House:+Committee+Jurisdictions'>Committee Jurisdictions</a></li>"
				//+ "	<li><a href='/redirect.html?url=http://thomas.loc.gov/cp/cpquery.html&title=THOMAS:+Committee+Reports'>Committee Reports</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_comm.jpg";
			break;
		
		case "legis":
			content="<h2>Legislative Activities</h2>"
				+ "<ul>"
				+ "	<li><a href='/legislative/index.html'>House Floor Proceedings</a></li>"
				+ "	<li><a href='/legislative/index.html'>Congressional Schedule</a></li>"
				+ "	<li><a href='/legislative/legvotes.html'>Roll Call Votes</a></li>"
				+ "	<li><a href='/legislative/housedoc.html'>House Documents</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_legis.jpg";
			break;
				
		case "art":
			content="<h2>Art &amp; History</h2>"
				+ "<ul>"
				+ "	<li><a href='/art_history/house_history/index.html'>Congressional History</a></li>"
				+ "	<li><a href='/art_history/house_history/index.html'>Previous House Leadership</a></li>"
				+ "	<li><a href='/art_history/house_history/index.html'>Historic Events</a></li>"
				+ "	<li><a href='/art_history/art_artifacts/index.html'>House Artwork</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_art.jpg";
			break;
					
		case "pd":
			content="<h2>Public Disclosure</h2>"
				+ "<ul>"
				+ "	<li><a href='/public_disc/index.html'>Information for Lobbyists</a></li>"
				+ "	<li><a href='/public_disc/index.html'>Reports & Filings</a></li>"
				+ "	<li><a href='/public_disc/foreign/index.html'>Foreign Travel Reports</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_pd.jpg";
			break;
		
		case "library":
			content="<h2>House Library</h2>"
				+ "<ul>"
				+ "	<li><a href='/library/collection.html'>Library Collection</a></li>"
				+ "	<li><a href='/library/qa-index.html'>Q &amp; A</a></li>"
				+ "	<li><a href='/library/reference-index.html'>Reference Desk</a></li>"
				+ "	<li><a href='/library/links.html'>Resources</a></li>"
				+ "	<li><a href='http://www.surveymonkey.com/s.aspx?sm=1lAP6feota7nVlfxfTGcJQ%3d%3d#q1 ' target='_blank'>Feedback</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_library.jpg";
			break;
		/*
		case "kids":
			content="<h2>Kids in the House</h2>"
				+ "<ul>"
				+ "	<li><a href='http://clerkkids.house.gov/congress/members/first_day/index.html'>First Day of Congress</a></li>"
				+ "	<li><a href='http://clerkkids.house.gov/games/index.html'>Fun and Games</a></li>"
				+ "	<li><a href='http://clerkkids.house.gov/laws/index.html'>How Laws Are Made</a></li>"
				+ "	<li><a href='http://clerkkids.house.gov/time/index.html'>Time Traveler</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_kids.jpg";
			break;
		*/
		default:
			case "clerk":
			content="<h2>About the Clerk's Office</h2>"
				+ "<ul>"
				+ "	<li><a href='/about/duties.html'>Duties of the Clerk</a></li>"
				+ "	<li><a href='/about/history.html'>History of the Clerk's Office</a></li>"
				+ "	<li><a href='/about/offices.html'>Offices under the Clerk</a></li>"
				+ "	<li><a href='/about/solicit.html'>Solicitations & Important Forms</a></li>"
			+ "	</ul>";
			bgImage = "/images/main_clerk.jpg";
			break;
	}
	if (document.getElementById("section_features") != null)
	{
		//set the content
		document.getElementById("section_features").innerHTML=content;
		//change the background image
		document.getElementById('section_features').style.background='url('+ bgImage +')';
	}
}