$(document).ready(function(){
	//###############   FAQ: Expandable options   ###############
	$('#faqlist li div').hide();
	$('#faqlist li h2:first').click(function() {  
		var $parent = $(this).parent();
		$(this).next().slideToggle("fast");
		if( $parent.is('.closed') ) {
			$parent.removeClass('closed');
			$parent.addClass('open');
		} else {
			$parent.removeClass('open');
			$parent.addClass('closed');
		}
	});
	$('#faqlist li h2:first').hover(
		function() {
			$(this).addClass('rollover');
		},
		function() {
			$(this).removeClass('rollover');
		}
	);

	$(window.location.hash).trigger("click");
});