$(document).ready(function()
{
	//********************************
	// JCAROUSEL
	//********************************
	$('#carousel').jcarousel();
	
	
	$('.playList').click(function()
	{
		$.get("/video.php",{ sig: $(this).attr('rel') },function(data){
			$('#player').html(data);
		});
		
		$('.playList').each(function(){
			$(this).removeClass("actived")
		});
		
		$(this).addClass("actived");
	});
	
	$('#player object').append('<param name="wmode" value="transparent">');
	$('#player object').attr('wmode', 'transparent');
	$('#player embed').attr('wmode', 'transparent');
	
	$(document).ready(function()
	{
		$("#loading").bind("ajaxSend", function(){
			$('#player').hide();
			$(this).show();
		}).bind("ajaxComplete", function(){
			$(this).hide();
			$('#player').show();
		});
	});
	

});