$(document).ready(function(){
	$('div.scroller').fancyScroll({
		interval 	: 5000,
		speed		: 1000,
		ease		: 'easeInOutCubic',
		start		: Math.floor(Math.random() * 3)
	});

        //HIDE FAQ
	$('div.faq_overview div.answer div').hide();
	//FAQ EXPAND
	$('div.faq_overview div.answer span').click(function(){
		$(this).parent().children('div').toggle();
	});
	
	$('div.faq_overview div.arrows a').click(function(){
		var str = 'faq_'+ this.rel;
		$('div.'+ str).children('div').show();
	});

});
