function playURL(url) {
    document.QuickTimePlayer.SetURL('http://mohawkgroupnet.com/external/movies/neocon06/' + url);
}

function cClass(obj) {
	var a = document.getElementById("vidmenu").getElementsByTagName("a");

        for(var i=0; i < a.length; i++) {
		if (a[i].className == 'current') {
			a[i].setAttribute("class", "");
			a[i].setAttribute("className", "");
		}
	}

        if (obj.className == '') {
            obj.setAttribute("class", "current");
	    obj.setAttribute("className", "current");
        }
}