	var			undefined = document.getElementById( "xyzzy" );
	var			g_current_tip_id = 1;
	var			g_tips = [ "",
						"Do not add unnecessary graphics, pictures or backgrounds to your resume.",
						"Make sure your contact information is complete and correct.",
						"Use an email address that you will keep for years and is professional sounding. Rather than  partyguy@email.com, obtain a more professional one such as first.intial.surname@email.com.",
						"Arrange your resume in chronological order from current position to past",
						"The description of your current job should have more detail and depth than previous jobs; lack of such detail implies that your career is in decline.",
						"Ensure that your resume is easy to read and comprehend by using standard fonts and formatting.  Don't use more than two or three different font types.  It becomes too noisy.",
						"Make sure there are NO spelling errors, typos or poor grammar. Computer spell-check and grammar-check are not enough; ask a friend or two to read it through.",
						"Resume details should be short, concise and to the point. Use blunt, paraphrased bullet-points.",
						"Prioritize the information contained in your resume: Make sure that what is most important and relevant about your accomplishments will be the first thing a reader sees.",
						"Do not lie about your roles, duties and accomplishments. The people who are interviewing you will have seen dozens of people for your role. Dramatic differences in roles will raise red flags.",
						"Do not use someone else's resume. It will not accurately reflect you and your accomplishments.",
						"If there is a gap in you work history, explain it truthfully instead of using inaccurate dates to cover gaps. Good due diligence will uncover it. Not disclosing is as bad as lying.",
						"Your resume should specifically state the type of industry, revenues, and public or private status for each specific employer.",
						"Do not write your resume in the 1st or 3rd person. State all accomplishments without the use of pronouns; verbs should be in the past tense.",
						"The formatting should be consistent throughout the resume.  Be obsessive about this.  If the spacing is messy and items don't line up, hiring managers in this industry WILL notice.",
						"Remember, a resume is only one tool at your disposal.  If you expect to lob a resume into a corporate email and get a job, you will likely be disappointed.",
						"Don't water down your resume and oversimplify your responsibilities and accomplishments. Highlight your successes.",
						"Do not include personal information on your resume unless it is relevant to the position for which you are applying.",
						"Although power point and video resumes are becoming more common, these forms have a long way to come before financial services accepts them as more than just entertaining.",
						"For employment beyond 10 years ago, create a 'Previous Employment' section; here you can quickly list your older assignments simply by title, company and dates.",
						"In Financial Services a one to two page resume is standard. If your career spans several decades then your CV can be longer, otherwise it should never exceed two pages."
						]
	var			g_total_tips = g_tips.length;
	
	function highlight_id( new_tip_id )
	{
		var		new_tip = document.getElementById( "tip_" + new_tip_id );
//		alert( new_tip_id )
		if( new_tip != undefined )
		{
			var last_tip = document.getElementById( "tip_" + g_current_tip_id );
			if( last_tip != undefined )
				last_tip.className = ""; 

			new_tip.className = "focus";
			
			document.getElementById( "tip_count" ).innerHTML = new_tip_id;
			document.getElementById( "tip_area" ).innerHTML = g_tips[new_tip_id];
			
			if( new_tip_id == g_total_tips )
				document.getElementById( "next_tip" ).className = "disabled"
			else
				document.getElementById( "next_tip" ).className = ""

			if( new_tip_id <= 1 )
				document.getElementById( "previous_tip" ).className = "disabled"
			else
				document.getElementById( "previous_tip" ).className = ""
			
			g_current_tip_id = new_tip_id
		}
	}
	
	function highlight_next()
	{
//		alert( g_current_tip_id );
		if( g_current_tip_id < g_total_tips )
			highlight_id( g_current_tip_id + 1 )
	}

	function highlight_previous()
	{
//		alert( g_current_tip_id );
		if( g_current_tip_id > 1 )
			highlight_id( g_current_tip_id - 1 );
	}
