
	
	
	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'>Life Insurance			</a></li><li><a href='javascript:void(0);' onclick=contentUpdate('task1','1') id='task1'>Disability Benefits			</a></li><li><a href='javascript:void(0);' onclick=contentUpdate('task2','2') id='task2'>Business Travel Accident Insurance			</a></li>";
		getULid.innerHTML =  getTitle;
	
	
	  
	 getText[ 0 ]="<h3>Life Insurance</h3><p>We believe that our employees should be adequately covered in case something unexpected happens. Therefore, we provide all of our employees with Life Insurance benefits as follows:</p><ul><li>Basic Life insurance = 1.5 times your benefit earnings</li><li>Basic AD&amp;D insurance = 1 times your benefit earnings</li></ul><p></p><p>In addition, we offer our employees the opportunity to purchase supplemental life insurance at competitive group rates through the convenience of payroll deduction.</p>";
				
	
	  
	 getText[ 1 ]="<h3>Disability Benefits</h3><p>After 60 days of employment, we provide all benefit-eligible employees with Short Term Disability benefits that will replace all or a portion of your salary if you are unable to work due to a non-work related injury or illness for up to six months. The Company pays the full price of this coverage.</p><p>If you are unable to work after six months of Short Term Disability, you may apply for benefits under our Long Term Disability program. If approved for Long Term Disability benefits, our plan will pay a benefit (including social security, if applicable) equal to 50% of your pre-disability earnings up to a maximum monthly benefit of $14,583. The Company pays the full cost of this coverage. In addition, employees may choose to buy additional coverage to bring their total Long Term Disability benefit to 60%&#160; (to a max of $17,500.)of their pre-disability pay.</p>";
				
	
	  
	 getText[ 2 ]="<h3>Business Travel Accident Insurance</h3><p>The Company provides all employees who may be injured or killed while traveling while on Company business with a Travel Accident Benefit of up to $250,000.</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';	
		}
	

