$(function() {
	$("#menuContainer a").each(
		function(i, elm){
			$(elm).click(function(p_evt){

				callAS("playVideo", $(this).attr("href"));
				p_evt.preventDefault();
			});
		}
	)
});

function callAS(p_func, p_value) {
	if(arguments.length == 1){
		getSWF("videoScreen")[p_func]();
	}else{
		getSWF("videoScreen")[p_func](p_value);
	}
}

function getSWF(movieName) {
	return document[movieName];
}

function asTrace(p_val){
	alert(p_val);
}