function hideSWF() {
	document.getElementById('player-holder').style.visibility = "hidden";
	}
function showSWF() {
	document.getElementById('player-holder').style.visibility = "visible";
	}

$(document).ready(function() {
	
	//remove <a> focus for dotted box in FF
	$('a').mousedown( function () {
		$(this).blur;
		return false;
	});
	$('a').click( function () {
		$(this).blur;
	});
		
} );
