 /*<![CDATA[*/
		$(document).ready(function() {
			$("a.openplayer").fancybox({
				'width'					: 936,
				'height'				: 555,
				'transitionIn'			: 'none', // 'elastic', 'fade', or 'none'
				'transitionOut'			: 'none', // 'elastic', 'fade', or 'none'
				'margin'				: -10,
				'padding'				: 10,
				'showCloseButton'		: true,
				'titleShow' 			: false,
				'overlayShow'			: true,
				'overlayOpacity'		: 0.6,
				'overlayColor'			: '#000',
				'autoDimensions'		: false,
				'autoScale'			: false,
				'hideOnOverlayClick'		: false,
				'type'				: 'swf',
				'swf'				: { wmode: 'transparent', allowFullScreen: true, allowScriptAccess: 'always' }
			});	

			//IE6 Close Button Hover Fix (It's just a simple image replacement since IE6 does not understand the pseduo-class :hover very well)
		  $('a#fancybox-close').hover(function() {
			$(this).addClass('close-hover');
		  }, function() {
			$(this).removeClass('close-hover');
		  });
		});
/* ]]>*/

