var cdn = 'http://ptn.vo.llnwd.net/o9/u/website/';
var cdnImage = cdn + 'images/';
var cdnSWF = cdn + 'swf/';

function _fc(){
	this.source = {	src:cdnSWF + 'flowplayer.commercial-3.1.1.swf',	wmode:'transparent', expressInstall:cdnSWF + 'expressinstall.swf' };
	this.options = { 
			autoStart: false,
			key:'#$59f915195854bbae11b', 
			clip:{ provider: 'cdn', acelerated:true, autoBuffering:false, bufferLength:0 },
			screen:{ top: 0 },
			plugins:{ cdn:{ url:cdnSWF + 'flowplayer.rtmp-3.1.0.swf', netConnectionUrl: 'rtmp://ptn.fcod.llnwd.net/a3947/o9/s' } }
		}
}

function right( val, len ){
	return val.substring( val.length - len );	
}

function setPhotoThumbnails( rootDiv, imageRoot, count ){
	for( var i = 1; i <= count; i++ ){
		var div = 'div#' + rootDiv + ' > div.o-menu';
		var img = '<img class="po-menu-thumb" src="bin/photos/' + imageRoot + right( '000' + i, 3 ) + '.jpg" rel="' + rootDiv + '" />';
		$( div ).append( img );
	}
}

$( document ).ready( function(){
	// set the overlays 
	$( 'a.o-button[rel]' ).overlay({ closeOnClick:false, fadeInSpeed:2000, close:'a.o-close', expose:{ opacity:.8, color:'#20497a' } });
	
	// fill the overlays
	setPhotoThumbnails( 'po-1', 'sns-red-carpet-', 28 );
	setPhotoThumbnails( 'po-2', 'sns-tournament-', 59 );
	setPhotoThumbnails( 'po-3', 'sns-ptn-vip-', 24 );
	setPhotoThumbnails( 'po-4', 'sns-ptn-staff-', 4 );
	setPhotoThumbnails( 'po-5', 'sns-misc-', 23 );
	
	$( 'img.po-menu-thumb' ).click( function(){
		$( 'div#' + $( this ).attr( 'rel' ) + ' > div.o-display > img' ).attr( 'src', $( this ).attr( 'src' ) );
	});
	
	x = new _fc();
	x.source.buffering = false;
	x.options.canvas = { backgroundGradient: 'none', backgroundColor: 'transparent' };
	x.options.plugins.controls = {
		backgroundColor: '#CCCCCC',
		backgroundGradient: 'high',
		buttonColor: '#a1a1a1',
		bufferColor: '#a1a1a1',
		timeBgColor: '#a1a1a1',
		progressColor: '#074279',
		time: true,
		scrubber: true
	};
	$f( 'a.o-player', x.source, x.options );
});
