	var root_path	= window.location.href.substring(0, window.location.href.lastIndexOf("/smec/")+6);
	var aflax 		= new AFLAX(root_path+"/templates/js/library/AFLAX/aflax.swf");
	var soundObj 	= null;
	
	function go(){
		AFLAX.trace("Here")		
		soundObj = new AFLAX.FlashObject(aflax, "Sound");
		AFLAX.trace(soundObj.id);		
		soundObj.exposeFunction("loadSound", soundObj);		
		soundObj.exposeFunction("start", soundObj);		
		soundObj.exposeFunction("stop", soundObj);
		soundObj.exposeFunction("setVolume", soundObj);
		soundObj.exposeProperty("position", soundObj);
		soundObj.mapFunction("addEventHandler");
		soundObj.addEventHandler("onLoad", "readyToPlay");
		soundObj.loadSound("./templates/songs/song.mp3", false);
		soundObj.setVolume(100);
	}
