jQuery(document).ready(function() {

	$(".sound").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'		: this.title,
			'width'		: 300,
			'controlbar'		: 'bottom',
			'height'		: 30,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'		: 'transparent',
			'allowfullscreen'	: 'false'
			}
		});

		return false;
	});



});

