var popupFaq = new Popup(null, 'popupFaq');

Event.observe(document, 'dom:loaded', function() {
	$$('#scrollContainer a').each(function(a) {
		a.observe('click', aClicked);
	});	
	$$('#scrollContainer img').each(function(img) {
		img.observe('click', aClicked);
	})
});

function aClicked(event) {
	event.stop();
	popupFaq.open();
	var e = event.element().up('.scrollItem');
	var id = e.id.substring(11); 	
	$('popupFaqH1').update(faq[id]['titel_liste']);
	flexcrollUpdate('popupFaqTekst', faq[id]['tekst']);	
	$('popupFaqIMG').src = '/images/cms/faq/' + id + '.jpg?salt=' + faq[id]['image_salt'];
	popupFaq.setBgColor(faq[id]['popup_color']);	
	fleXenv.postInitInitialize('popupFaqTekst');	
}  
