$(document).ready(function() {
	// lightbox
	$('a[rel*=lightbox]').lightBox({
		imageLoading:'/images/spinner.gif',
		imageBtnClose:'/images/close.gif',
		txtImage:'Bild',
		txtOf:'von'
	});
	// faq
	$('.faq ul').accordion({
		header:'h4',
		active:false,
		//autoHeight:false,
		clearStyle:true,
		collapsible:true
		//animated:'easeslide'
	});
	$('#faq_query')
	.change(function() {
		updateFaqList($(this).val());
	})
	.keyup(function() {
		updateFaqList($(this).val());
	});
	$('#faq_reset').click(function() {
		$('#faq_query').val('');
		updateFaqList('');
	});
});

function updateFaqList(query) {
	$('.faq li').each(function() {
		if ($(this).text().toLowerCase().indexOf(query.toLowerCase()) >= 0) {
			$(this).fadeIn();
		} else {
			$(this).fadeOut();
		}
	});
}
