how can i detect jplayer is on full screen mode?
ok, this is how i had to go:
$("a.jp-full-screen").click(function(){
if($(this).attr("title")=="full screen"){
$(".hover, ul#navigation").hide()
}
})
$("a.jp-restore-screen").click(function(){
if($(this).attr("title")=="restore screen"){
$(".hover, ul#navigation").show()
}
})