var preRoll = false;  

$( function () {
	MediaPlayerInit();
    });

function MediaPlayerInit() {

	$('#musclecartv-item-player').html('');
	$('#musclecartv-item-player').show();

	if ( typeof(node_id) == 'undefined' ) {
		return false;
	}

	if ( preRoll ) {
		swfobject.embedSWF(
						   "/flash/MuscleCarTV/MediaPlayer.swf", 
						   "musclecartv-item-player", 
						   "576", 
						   "324", 
						   "9.0.0", 
						   false, 
						   { node_id: node_id, host: host, mediaURL: "/flash/MuscleCarTV/shannons-preroll-576-324.flv", splashImageURL: splashImageURL, autoplay: autoplay },
						   { wmode: "transparent", bgcolor: "#000" } 
						   );
	} else {

	    swfobject.embedSWF(
						   "/flash/MediaPlayer/MediaPlayer.swf", 
						   "musclecartv-item-player", 
						   "576", 
						   "324", 
						   "9.0.0", 
						   false, 
						   { node_id: node_id, host: host, mediaURL: mediaURL, splashImageURL: splashImageURL, autoplay: false },
						   { wmode: "transparent", bgcolor: "#000" } 
						   );

		// only autoplay first time. subsequent shows of the player will be
		// after an action has been completed.
	}

	autoplay = '0';

}

function MediaPlayerReceiver ( message )
{

	// receiving and handle ExternalInterface message from flash

	if ( message == 'stopped' ) {

	}

	if ( message == 'complete' ) {
		if ( preRoll ) {
			preRoll = false;
			MediaPlayerInit();
		} else if ( typeof(nextPlay) != 'undefined' ) {
			window.location = nextPlay;
		}

	}


}


/*
 * helpers
 */

function log(s) {
	$('#log').html(s);
}

