function changeMovie(param){
	var param;
	param2 = $("div #"+param).html();
	
	jQuery('#thisPlayer').fadeOut('fast',function(){
		jQuery('#thisPlayer').html();
	});
	jQuery('#thisPlayer').fadeIn('slow',function(){
		jQuery('#thisPlayer').html(param2);
	});
}

jQuery(document).ready(function() {
	jQuery(".various1").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});		
    jQuery('#loopedSlider').loopedSlider();
});




