$(document).ready(function() {
	
	$("a.overlay-flash").fancybox({
		'width' :			 '75%',
		'height' :			 '75%',
		'autoScale' :		 false,
		'transitionIn' :	 'elastic',
		'transitionOut' :	 'elastic',
		'type' :			 'iframe',
		'padding' :			 0,
		'zoomOpacity'		 : true,
		'zoomSpeedIn'		 : 500,
		'zoomSpeedOut'		 : 500,
		'overlayOpacity' 	 : 0.9,
		'hideOnContentClick' : false,
		'onComplete'		 : function() {
			$("#flash-container").hide();
		},
		onCleanup			 : function() {
			$("#flash-container").show();
		},
		onClosed			 : function() {
			//alert('Closed!');
		}
	});
	
	if ($.browser.flash == true)  
		$("#flash-container").show(); 
	else
		window.location.replace("nonflash.html");
	
});
