var PHOTOS = {
	'Vestar U.S.' : [
                'alpert.jpg', 'levy.jpg', 'nagle.jpg', 'mundt.jpg',
                'elrod.jpg', 'holstein.jpg', 'pena.jpg',
                'ratzan.jpg', 'shrivastava.jpg', 'carey.jpg',
                'feder.jpg', 'long.jpg', 'okeefe.jpg', 'shattenkirk.jpg',
		'oconnell.jpg', 'kelley.jpg'
        ],
        'Vestar Europe' : [
                'rosner.jpg', 'fesquet.jpg', 'felix.jpg',
                'cesari.jpg', 'glessinger.jpg', 'takla.jpg',
                'tonn.jpg', 'boege.jpg', 'magliana.jpg',
                'mantica.jpg', 'mantero.jpg', 'puccio.jpg',
		'europe.jpg'
        ],
        'Vestar Japan' : [
                'saji.jpg', 'woodard.jpg', 'sunouchi.jpg',
                'sumitani.jpg', 'sekihata.jpg', 'ueji.jpg', 'kawai.jpg',
		'japan.jpg'
	]
};

var teamImgs = {
	'Vestar U.S.' : '/images/oconnellTeam.jpg',
	'Vestar Europe' : '/images/bioPhotos/europe.jpg',
	'Vestar Japan' : '/images/bioPhotos/japan.jpg'
};

var currentIndex = 1;
var currentRegion = 'Vestar U.S.';
if( CURRENT_SITE == 'europe' )
	currentRegion = 'Vestar Europe';
if( CURRENT_SITE == 'japan' ) {
	currentIndex = 0;
	currentRegion = 'Vestar Japan';
}

function updatePhoto() {
	if( currentIndex >= PHOTOS[currentRegion].length )
		currentIndex = 0;
	imgSrc = '/images/bioPhotos/' + PHOTOS[currentRegion][currentIndex];
	$('<img src="' + imgSrc + '" />').load( function() {
		$('.movie img').fadeOut( 'fast', function() {	 
			$(this).attr( 'src', imgSrc );
			$(this).fadeIn();
			currentIndex++;
			setTimeout( updatePhoto, 3000 );
		} );
	} );
}

$(document).ready( function() {
	//setTimeout( updatePhoto, 3000 );
} );
