// JavaScript Document
parentURL = parent.document.URL;

function checkURL() {
	if (parentURL.indexOf('/#/') < 0) {
		pageTitleID = parentURL.substring(parentURL.indexOf('.com')+4, parentURL.length);
		loadPageID = "http://www.scenewave.com/music/#" + pageTitleID;
		window.location = loadPageID;
	}
}

function showAlert() {
	if (parentURL.indexOf('/#/') < 0) {
		//document.getElementById('playerAlert').style.display = "block";
		showAlert_tween = new Tween(document.getElementById('playerAlert').style,'marginTop',Tween.regularEaseIn, -40,0,.3,'px');
		showAlert_tween.start();
	}
}
