function goJobs() {
	var jobs = document.getElementById('jobs');
	switch (jobs.value) {
		case "open":
			window.location = "https://apps.sandiego.gov/pjaol/currjob/open.jsp";
			break;
		case "promo":
			window.location = "https://apps.sandiego.gov/pjaol/currjob/promote.jsp";
			break;
		case "transfers":
			window.location = "http://apps.sandiego.gov/pjaol8/bulletins/transfer/transfer.pdf";
			break;
	}
}

function startVideo(){
    if (navigator.userAgent.indexOf("Firefox") != -1) {
        window.open("http://granicus.sandiego.gov/ASX.php?publish_id=809&sn=granicus.sandiego.gov", "player", "toolbar=no,width=800,height=600,directories=no,scrollbars=auto,resizable=yes,menubar=no");
    }
    else {
        var start = document.getElementById('startvideo');
        var wmv = document.getElementById('wmvvideo');
        var wmvfile = document.getElementById('wmvfile').object;
        start.style.display = "none";
        wmv.style.display = "block";
        wmvfile.Filename = "http://granicus.sandiego.gov/ASX.php?publish_id=809&sn=granicus.sandiego.gov";
        wmvfile.Autostart = "true";
    }
}
