
$().ready(function() {
				   
	if( $('#faq').is('*') ) {
		$('#center_column').makeFAQ({
			indexTitle: "My Index",
			displayIndex: false,
			faqHeader: "h4"
		});
	}
	
	if( $('#presentation').is('*') ) {
		//Activate FancyBox
		$("a.fancy").fancybox({
			'hideOnContentClick': true,
			'overlayShow':    true
		});   
	}
	
});

