$(function() {
	
	
	// VIDEO
	$('#videoBoxConteiner #miniature a').live('click', function()
  {
		var url = $(this).attr('href');
		$.ajax({
			type: 'get',
			url: url,
			beforeSend: function()
			{
				//$('#messaggio').show().html('<h3>Testo del messaggio</h3><div style="text-align:left; height:33px; padding-top:8px;"><img src="/images/loader/loader.gif" /></div>');
			},
			success: function(data)
			{
				$('#videoBoxContent').html(data);
			},
			error: function(XMLHttpRequest, textStatus, errorThrown)
			{
				alert(textStatus + ' ' + errorThrown);
			}
		});	
		return false;
	});
	
							
});