$(document).ready(function(){
	$('#box #images a').hover(function(){
		var id = $(this).attr('class');
		$('#box #descriptions li').hide();
		$('#box #descriptions li#'+id).show();
		return true;
	}, function() {
		$('#box #descriptions li').hide();
	});
	$('#box #images a').click(function(){
		return false;
	});
});

var player = null;
function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
}
