
	
	
	function contentUpdate(taskQuery,j){
		document.getElementById('updateContainer').style.display = 'block';	
		var getULid = document.getElementById("linkMenu");	
		getText = new Array();	
		var getTitle;
		getTitle ="<li><a href='javascript:void(0);' onclick=contentUpdate('task0','0') id='task0'>401(k)			</a></li><li><a href='javascript:void(0);' onclick=contentUpdate('task1','1') id='task1'>Pension Plan			</a></li><li><a href='javascript:void(0);' onclick=contentUpdate('task2','2') id='task2'>PTO Schedule			</a></li><li><a href='javascript:void(0);' onclick=contentUpdate('task3','3') id='task3'>Paid Holidays			</a></li>";
		getULid.innerHTML =  getTitle;
	
	
	  
	 getText[ 0 ]="<h3>401(k)</h3><p>The Salary Investment Plan (SIP) has been established as an easy way for employees to take charge of their future retirement savings. Employees can choose to save money on a before-tax and/or an after-tax basis. <ul><li>Eligible after 3 full months of employment</li><li>Automatic 2% pre-tax contribution when eligible</li><li>1 – .50% Pre or Post Tax Contribution</li><br>*Limits on highly compensated employees (more than 100,000) <li>Company Matches 50% of First 6% of Employee Contribution <li>Vested in company match after 3 years of employment<li>Web Access</li><li>Over 12 Investment Choices</li><li>Self-Managed Account Option</li><li>Rollover Available</li></ul></p>";
				
	
	  
	 getText[ 1 ]="<h3>Pension Plan</h3><p>The Retirement Plan is a cash balance plan fully paid for by the Company. The plan grows in value year after year. The longer employees work here, the more they accumulate toward their retirement.</p><p>Participation in the Retirement Plan is automatic once employees are eligible. If you are a full-time employee, you are eligible to participate in the Retirement Plan after you have been employed for 12 months.</p>";
				
	
	  
	 getText[ 2 ]="<h3>Paid Vacation</h3><p><strong>First calendar year:</strong> 3.33 hours per pay period not to exceed 80 hours or 2 weeks</p><p><strong>1 year but less than 5:</strong>10 days or 2 weeks</p><p><strong>5 years but less than 10:</strong> 15 days or 3 weeks</p><p><strong>10 years but less than 20:</strong> 20 days or 4 weeks</p><p><strong>20 years or more:</strong> 25 days or 5 weeks</p>";
				
	
	  
	 getText[ 3 ]="<h3>Paid Holidays</h3><p>The Company provides employees with 13 paid holidays per year. Since we are a 24/7 company, the actual holidays we observe may vary from year to year. Generally, we observe the following holidays:</p><ul><li>New Year&#8217;s Day</li><li>Martin Luther King Day</li><li>President's Day</li><li>Memorial Day</li><li>Independence Day</li><li>Labor Day</li><li>Thanksgiving Day &amp; Day After</li><li>Christmas</li></ul><p></p><p>In order to allow employees of all faiths to enjoy time off to celebrate, the remaining days are considered floating holidays and can be taken by employees at any time with prior management approval. The number of floating holidays will change from year-to-year.</p>";
				
	
	
			document.getElementById('updateContainer').innerHTML=getText[j];
			var getID = "task"+j;					
			var getIDno = j;
			var getUL = document.getElementById("linkMenu");
			var getListLength = getUL.getElementsByTagName("li").length;	
			for(var i=0; i<getListLength; i++){
				document.getElementById("linkMenu").getElementsByTagName("li")[i].className = 'deActiveTab';		
			}
			document.getElementById("linkMenu").getElementsByTagName("li")[getIDno].className = 'activeTab';	
		}
	

