
// order home page nav copy change the roll over box. 
var arrHCall = new Array();
	arrHCall[0] = "Ideal for personal gifts, customer thank-you's and more."; // Gift Cards
	arrHCall[1] = "The best way to deliver rebates and participation rewards.";// Promotional Cards
	arrHCall[2] = "Great for employee or channel partner commissions and ongoing incentive programs."; // Re-loadable Incentive Cards
	arrHCall[3] = "Enhancements to tailor cards to your specific needs."; //Customizable Options
function chCopyHomeOn(id){
d = document.getElementById('homeSubNavCallOut');	
	d.innerHTML = "<img src='/images/order_nav/calloutTop.gif' border='0'><br><div class='callIndent'>" + arrHCall[id] + "</div><img src='/images/order_nav/calloutBottom.gif' align='absbottom' border='0'>";
	d.style.visibility = 'visible';
}
function chCopyHomeOff(){
d = document.getElementById('homeSubNavCallOut');	
	d.style.visibility = 'hidden';
}
