$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a.fancybox").fancybox({
		'titleShow' : false
	});
	
	$("a.fancybox_video").each( function( index, el ) {
		$(el).fancybox({
			'autoScale'		: false,
			'titleShow' 	: false,
			'width'			: 425,
			'height'		: 344,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
	});

});

AudioPlayer.setup(audio_player_url, {  
	width: '100%' 
});