$(document).ready(function() {						   
	$('#videoBoxSelector a').click(function(event){	
		event.preventDefault();		
		//alert($(this).attr('href'));						
		loadLink($(this));
	});
	
	
	function loadLink(link){
		var toLoad = link.attr('href');
		$('#videoBoxScreen').fadeOut('normal',loadContent);

		function loadContent() {
			$('#videoBoxScreen').load(toLoad,'',showNewContent)
		}
		
		function showNewContent() {
			$('#videoBoxScreen').fadeIn('normal');
		}
	}
	
});
