/*
jQuery(document).ready(function(){
*/	
	jQuery('#rotator').before('<div id="paginator"><div>');
	jQuery('#rotator').cycle({ 
	    fx:     'scrollHorz', 
	    speed:  1500, 
	    timeout: 5000, 
	    pager:  '#paginator' 
	});
		
	jQuery("a#main-image-wrapper").fancybox({
		'opacity'		: true,
		'overlayShow'	: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'none'
	});
	
	jQuery("a#example5").fancybox();
	
	jQuery("a.group").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200
	});
	
	
	jQuery('.faq .answer').hide();
	jQuery('.faq .question').click(function(){
	  jQuery(this).next().slideToggle('normal');
	});
	
	
	
/*	
});*/
