window.addEvent('domready', function() {
	
	initFaqBlocks();
});


function initFaqBlocks() {
	
	$('colMain').getElements('.blockFaq .item').each(function(el) {
		
		el.getElement('h5 a').addEvent('click', function() {
			
			this.getParent().getParent().toggleClass('active');
		});
	});
}
