$(function() {
	
	$('#musicPlayer').popupWindow({ 
		height: 300,
		width:450, 
		top:50, 
		left:50 
	});
	
	$('#musicPlayerAgain').popupWindow({ 
		height: 300,
		width:450, 
		top:50, 
		left:50 
	});
	
});

var lastTrack = '';

function trackPlaying(movieName) {
	stopMusic(movieName);
}
function thisMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	if (isIE == null) {
		alert("Browser check gave null");
	}
	return (isIE) ? window[movieName] : document[movieName];
}

function stopMusic(id) {
	var fl = thisMovie(lastTrack);
	if (lastTrack != id) {
		if (fl) {
			fl.stopMusic();
		}
	}
	lastTrack = id;
}

Shadowbox.init({
	enableKeys: false,
	modal: true,
	players:  ['html','iframe']
});
