$(document).ready(function() {

//	$('#cycle').cycle({
//		fx: 'fade'
//	});

	$( "#accordion" ).accordion({
		autoHeight: false
		});
		
	$("a.fancybox").fancybox();
	
	$("a.fancy-video").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: true,
			'autoPlay'		: true,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {'wmode':'transparent','allowfullscreen':'true'}
		});

	return false;
});

//	$('figure.gallery-item a').attr('rel','gallery');
//	$('figure.gallery-item a[rel="gallery"]').fancybox();

});
