// JavaScript Document
service1 = new Image();
service1.src = "_assets/images/2_Internal/Services_On_1.gif";

service2 = new Image();
service2.src = "_assets/images/2_Internal/Services_On_2.gif";

service3 = new Image();
service3.src = "_assets/images/2_Internal/Services_On_3.gif";

service4 = new Image();
service4.src = "_assets/images/2_Internal/Services_On_4.gif";

service5 = new Image();
service5.src = "_assets/images/2_Internal/Services_On_5.gif";


//Swap Function
function swapText(id) {
		switch (id) {
		case 1:
		document.getElementById('h1').innerHTML = "Retirement";
		document.getElementById('bodyText').innerHTML = "Retirement is not what it used to be. We understand that there are many factors to consider when building and maintaining a retirement plan.<br /><br />Cleary Asset Management will work together with you to define your retirement. Once we understand your goals and objectives, we will design a plan to help you achieve your desired retirement lifestyle.";
		break;
		
		case 2:
		document.getElementById('h1').innerHTML = "Education Planning";
		document.getElementById('bodyText').innerHTML = "For a child born in 2004, the cost of four years at a private college will amount to nearly $250,000. Next to buying a home, a college education is the largest expenditure most parents will ever make. The key to sending your child to college is advance planning.<br /><br />Starting today will ensure that your children or grandchildren will be able to pursue their education without limitation.";
		break;
		
		case 3:
		document.getElementById('h1').innerHTML = "Tax Planning";
		document.getElementById('bodyText').innerHTML = "Tax planning is an essential component of a functional financial plan. Cleary Asset Management will work together with your tax advisor to be sure that we manage your assets in a manner that maximizes your tax benifits and minimizes your tax consequences.";
		break;
		
		case 4:
		document.getElementById('h1').innerHTML = "Cash Flow Analysis";
		document.getElementById('bodyText').innerHTML = "Cash flow analysis will provide you a saving plan that will be essential to achieving your long term financial goals. Your financial plan is a living and breathing entity. Just as your life changes over the years so should your financial plan.";
		break;
		
		default:
		document.getElementById('h1').innerHTML = "Estate Planning";
		document.getElementById('bodyText').innerHTML = "Estate planning is the process of accumulating and disposing of an estate to maximize goals of the estate owner. The various goals of the estate planning include making sure the greatest amount of the estate passes to the estate owner’s intended beneficiaries.<br  /><br  />At Cleary Asset Management, we work together with our clients and their other trusted advisors to build a plan that aims at establishing a legacy for your family.";
		}
}