function initPeekaboos(count) {
	if (location.href.indexOf('#')) anchor = location.href.split('#');
	for (i=1;i<=count;i++) {
		trigger = document.getElementById('peekaboo_trigger-'+i);
		iseeyou = document.getElementById('iseeyou-'+i);
		trigger.onclick = togglePeekaboo;
		
		if (anchor[1] == 'free_checking' && i == 1) {
			trigger.className = 'noticeme';
		} else if (anchor[1] == 'heloc' && i == 9) {
			trigger.className = 'noticeme';
		} else if (anchor[1] == 'mobile_atm' && i == 2) {
			trigger.className = 'noticeme';
		} else if (anchor[1] == 'kirby' && i == 7) {
			trigger.className = 'noticeme';
		} else if (anchor[1] == 'local_groups' && i == 1) {
			trigger.className = 'noticeme';
		} else if (anchor[1] == 'foodbank' && i == 2) {
			trigger.className = 'noticeme';
		} else {
			iseeyou.className = 'i_no_seeyou';
		}
	}
}

function togglePeekaboo(e) {
	e = (e) ? e : ((window.event) ? window.event : null);
	if (e.srcElement) {				// if IE target exists use it
		t = e.srcElement;
	} else {						// all intelligent browsers understand this
		t = e.target;
	}
	if (t.nodeType == 3) t = t.parentNode;		// Safari bug (if text node - event is on parent)
	evt_id = t.id;
	id_pieces = evt_id.split('-');
	obj = document.getElementById('iseeyou-' + id_pieces[id_pieces.length-1]);
	trigger = document.getElementById('peekaboo_trigger-' + id_pieces[id_pieces.length-1]);
	if (obj.className == 'i_no_seeyou') {
		obj.className = 'iseeyou';
	} else {
		obj.className = 'i_no_seeyou';
	}
	trigger.className = '';
	return;
}
