var playerCol1;
var playerCol2;
var playerCol3;

function playerReady(obj) {
	var id = obj['id'];
    if (id == 'swfCol1') {
        playerCol1 = document.getElementById(id);
        playerCol1.addModelListener('STATE','StopPlayerCol3');
    } else if (id == 'swfCol2') {
    	playerCol2 = document.getElementById(id);
        playerCol2.addModelListener('STATE','StopPlayerCol3');
    } else if (id == 'swfCol1_VideoTestimonial_Player') {
    	playerCol2 = document.getElementById(id);
        playerCol2.addModelListener('STATE','StopPlayerCol3');
    }
}

function StopPlayerCol3(obj) {
	var id = obj['id'];
    if (id == 'swfCol1') {
        playerCol2 = document.getElementById('swfCol2');
        if (playerCol2) {
            playerCol2.sendEvent("STOP");
        }
        playerCol3 = document.getElementById('swfCol3');
        if (playerCol3) {
            playerCol3.stopVideo();
        }
    } else if (id == 'swfCol2') {
        playerCol1 = document.getElementById('swfCol1');
        if (playerCol1) {
            playerCol1.sendEvent("STOP");
        }
        playerCol3 = document.getElementById('swfCol3');
        if (playerCol3) {
            playerCol3.stopVideo();
        }
    } else if (id == 'swfCol1_VideoTestimonial_Player') {
        playerCol3 = document.getElementById('swfCol3');
        if (playerCol3) {
            playerCol3.stopVideo();
        }
    }
}
