function flash(movie){
	
	pause_rotation();
	$(document).ready(function() {
		$.fancybox({
			'width'				:	790,
			'height'			:	396,
			'padding'			:	4,
			'margin'			:	0,
			'opacity'			:	true,
			'autoScale'			:	true,
			'centerOnScroll'	:	true,
			'transitionIn'		:	'elastic',
			'transitionOut'		:	'none',
			'titleShow'			:	false,
			'type'				:	'swf',
			'href'				:	'/images/' + movie + '.swf',
			'onClosed'			:	function(){ resume_rotation(); }
		});
	});
	
}

function trend(name){
	
	pause_rotation();
	$(document).ready(function() {
		$.fancybox({
			'width'				:	790,
			'height'			:	396,
			'padding'			:	4,
			'margin'			:	0,
			'opacity'			:	true,
			'autoScale'			:	true,
			'centerOnScroll'	:	true,
			'transitionIn'		:	'elastic',
			'transitionOut'		:	'none',
			'titleShow'			:	false,
			'type'				:	'image',
			'href'				:	'/images/trends/' + name + '.jpg',
			'onClosed'			:	function(){ resume_rotation(); }
		});
	});
	
}
