window.addEvent('domready', function(){
	
	// start shadowbox
	
	Shadowbox.init({
		skillSetup : true,
		player: ["qt"]
		});
	// if its the production stills page
	// set up to show the stills
	// else if its the video page
	// set up for the video
	if($('photos')){
		$$('#photos li').setStyle('opacity', .8);
		$$('#photos li').addEvents({
			'mouseenter': function(evt){
				this.fade(1);
			},
			'mouseleave' : function(evt){
				this.fade(.8);
			}
		});
		Shadowbox.setup($$('#photos a'));
	}else if($('videoBox')){
		Shadowbox.setup($$('#videoBox a'));
	}
});
