

function makeNews(c,l,f,i){
	this.copy = c;
	this.link = l;
	this.follow = f;
	this.img = i;
	this.write = writeNews;
}

function writeNews(){
	var str = '';
	str += this.copy + '<br>';
        str +=  '<a href="' + this.link + '">' + this.follow + '</a>';
	return str;
}

var newsArray = new Array();
newsArray[0] = new makeNews("<div id='splashmiddle'><h3>Spotlight Services</h3><h4><a href='/services/assurance.shtml' class='spotlight'>Assurance</a></h4>Present your financial statements presented in accordance with generally accepted accounting principles and industry standards. Jackson Thornton financial statement assurance services can help you attain goals with more reliable and relevant information for decision making.&nbsp; <a href='/services/assurance.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a></div><div id='splashright'><h3>&nbsp;</h3><h4><a href='/services/business-consulting.shtml' class='spotlight'>Business Consulting</a></h4>Jackson Thornton's Business Consultants look at your business's &quot;big picture&quot;, reviewing your financial management processes, and steering you toward effective business practices. We help establish short- and long-range financial goals, as well as strategies and plans for growth.&nbsp; <a href='/services/business-consulting.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a>", '', '', '').write();

newsArray[1] = new makeNews("<div id='splashmiddle'><h3>Spotlight Services</h3><h4><a href='/services/tax.shtml' class='spotlight'>Tax</a></h4>Comply with ever-changing and complex tax law with the attention of the dedicated professionals at Jackson Thornton. Whether you're an individual, partner in a business, or the head of a corporation or a family-owned business, our practitioners can develop a tax plan for you.&nbsp; <a href='/services/tax.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a></div><div id='splashright'><h3>&nbsp;</h3><h4><a href='/services/technologies.shtml' class='spotlight'>Technologies</a></h4>Jackson Thornton Technologies can assess, plan and implement your information technology to ensure high-performance computer networks, systems infrastructures and internetwork connectivity, as well as network administration, maintenance and support.&nbsp; <a href='/services/technologies.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a>",'','','').write();

newsArray[2] = new makeNews("<div id='splashmiddle'><h3>Spotlight Services</h3><h4><a href='/services/client-accounting.shtml' class='spotlight'>Client Accounting</a></h4>Timely and accurate financial reporting is essential for growing business. But devoting your own time and personnel resources to this complicated process pulls you away from operating your business. Call in Jackson Thornton Client Accounting to keep moving forward with reliable financial statements for the informed management decisions.&nbsp; <a href='/services/client-accounting.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a></div><div id='splashright'><h3>&nbsp;</h3><h4><a href='/services/education-and-training.shtml' class='spotlight'>Education and Training</a></h4>At Jackson Thornton, we offer education and training to move our business forward, hosting seminars and events throughout the year to keep you current on tax and other financial management issues.  In addition, extensive employee and executive training is conducted Continuum Education + Training and Jackson Thornton Technologies.&nbsp; <a href='/services/education-and-training.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a>",'','','').write();

newsArray[3] = new makeNews("<div id='splashmiddle'><h3>Spotlight Services</h3><h4><a href='/services/asset-management.shtml' class='spotlight'>Asset Management</a></h4>Through independent and objective advice, Jackson Thornton Asset Management LLC helps you navigate through uncertainty, managing risk, maximizing opportunity and maintaining focus.  We can't predict the future of financial markets, but we can assure you of our long-term commitment to helping you reach your goals.&nbsp; <a href='/services/asset-management.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a></div><div id='splashright'><h3>&nbsp;</h3><h4><a href='/services/estate-planning.shtml' class='spotlight'>Estate Planning</a></h4>At Jackson Thornton, we know that a will is not necessarily the final word on distribution to your heirs and beneficiaries. We can show you how estimate plans are not just for the &quot;wealthy&quot;, and can also help in other related areas, including compliance, trusts, and lifetime gifting.&nbsp; <a href='/services/estate-planning.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a>", '', '', '').write();

newsArray[4] = new makeNews("<div id='splashmiddle'><h3>Spotlight Services</h3><h4><a href='/services/business-valuation.shtml' class='spotlight'>Business Valuation</a></h4>For a business to protect, plan and maximize assets, it must understand their value and make decisions accordingly. Jackson Thornton's certified valuation analysts offer business owners and their advisors experience and expertise needed for efficient and accurate planning - often saving tax dollars in the process.&nbsp; <a href='/services/business-valuation.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a></div><div id='splashright'><h3>&nbsp;</h3><h4><a href='/services/benefit-resources.shtml' class='spotlight'>Benefit Resources</a></h4>With significant experience designing, installing and administering employee benefit plans, the CPAs at Jackson Thornton Benefit Resources LLC understand how plans affect taxation, and tailor yours to allow for maximum tax benefits.&nbsp; <a href='/services/benefit-resources.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a>", '', '', '').write();

newsArray[5] = new makeNews("<div id='splashmiddle'><h3>Spotlight Services</h3><h4><a href='/services/litigation-support.shtml' class='spotlight'>Litigation Consulting and Support</a></h4>Determining correct damages, lost wages and earnings often requires more than a simple economic projection or cursory valuation. Our litigation consultants know business and industry operations, as well as tax ramifications and the strategies to minimize them. We also offer expert testimony with extensive experience in the courtroom.&nbsp; <a href='/services/litigation-support.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a></div><div id='splashright'><h3>&nbsp;</h3><h4><a href='/services/client-accounting.shtml' class='spotlight'>Client Accounting</a></h4>Timely and accurate financial reporting is essential for growing business. But devoting your own time and personnel resources to this complicated process pulls you away from operating your business. Call in Jackson Thornton Client Accounting to keep moving forward with reliable financial statements for the informed management decisions.&nbsp; <a href='/services/client-accounting.shtml'><img src='/graphics/arrow.gif' height='10' width='9' border='0'></a>", '', '', '').write();



var nIndex = 0;
var timerID = null;
function rotateNews(){
	var len = newsArray.length;
	if(nIndex >= len)
		nIndex = 0;
	document.getElementById('stories').innerHTML = newsArray[nIndex];
	nIndex++;
	timerID = setTimeout('rotateNews()',6000);
}
function pauseNews() {
	if (timerID != null) {
		clearTimeout(timerID);
		timerID = null;
	}
}

function playNews() {
	if (timerID == null) {
		timerID = setTimeout('rotateNews()', 1000);
	}
}
