$(function()
{
	// arrow
	if($('.current_0').html() != null)
	{
		$('.arrow').css("top",($('.current_0').offset().top-352)+"px");
	}
	
	// right col
	var dleft = $('.std .cleft').height();
	var dright = $('.std .cright').height();
	$('.cend').css("height",(dleft-dright+20)+"px");
	
	// video	
	$('.cright div img').click(function()
	{
		$('#global').prepend('<div id="background" style="width:100%;height:100%;background:#000000;z-index:980;position:absolute;top:0px;left:0px;opacity:0.5;-moz-opacity:0.5;-ms-filter:"alpha(opacity=50)";filter:alpha(opacity=50);"></div>');
		$('.video').fadeIn(500);
	});
	$('.video span').click(function()
	{
		$('#background').remove();
		$('.video').hide();
	});
});

