jQuery + Ajax + deeplinking =?

http://romeotovaradero.com/branches/sites/ajax/

Here’s what I am trying to accomplish:

On this page, the user has the choice of 4 videos loaded via Ajax (index, video02, video03 and video04). What I would like to do is add a deeplink for when someone clicks on video02/video03/video04 so that this video can be bookmarked or shared on Facebook? Is it possible?

I tried installing the jQuery Address plugin but I don’t understand how it works.

My javascript code :

$(document).ready(function() {
						   
						   
	$('#video02').click(function (){
		$('#main-player').load('video02.html');
	});
	
	$('#video03').click(function (){
		$('#main-player').load('video03.html');
	});
	
	$('#video04').click(function (){
		$('#main-player').load('video04.html');
	});


});