$(document).ready(function(){
    $("a.fancybox").fancybox({
    	
    'overlayOpacity'	:  	0.9,
	'overlayColor' 		: '#fff' 
    });

    $('#cycle').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$('#acc').accordion(
		{
		active: 0, 
    	header: 'h3', 
       	event: 'click', 
       	animated: 'bounceslide',
       	autoHeight: false
    	//animated: 'easeslide'
		//fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});