$(document).ready(function(){
	$('div.faq a.opener_link').click(function(){
		if($(this).parent().children('div.faq_answer').hasClass('opened')){
			$(this).parent().children('div.faq_answer').removeClass('opened');
			$(this).parent().children('div.faq_answer').slideUp('slow');
			$(this).css('background-image', 'url('+base_url+'assets/images/faq_arrow_down.png)');
			$(this).css('background-repeat', 'no-repeat');
		} else {
			$('div.opened').slideUp('slow');
			$('div.opened').parent().children('a.opener_link').css('background-image', 'url('+base_url+'assets/images/faq_arrow_down.png)');
			$('div.opened').parent().children('a.opener_link').css('background-repeat', 'no-repeat');
			$('div.opened').removeClass('opened');
			$(this).parent().children('div.faq_answer').slideDown('slow');
			$(this).parent().children('div.faq_answer').addClass('opened');
			$(this).css('background-image', 'url('+base_url+'assets/images/faq_arrow_up.png)');
			$(this).css('background-repeat', 'no-repeat');
		}
	});
});
