/* VIDEO */
function video(what,area) {
	what = what.replace(/ /g, "");
	//alert("http://"+window.location.hostname+"/fileadmin/templates/v2_video.php?video="+what+"&area="+area);
	$('#lightbox').fadeIn(1000);
	//$("#videoview").css('display','');
	var stagewidth = $('#lightbox').width();
	var stageheight = $('#lightbox').height();   
	var left = (stagewidth-720)/2;
	var top = '150px';
	$('#videoview').css('left',left);
	$('#videoview').css('top',top);
	$("#videoview").load("http://"+window.location.hostname+"/fileadmin/templates/video.php?video="+what+"&area="+area);
	$("#videoview").slideDown(1000);
}

function hide() {	
	$("#lightbox").fadeOut(300);
	
	setTimeout(function(){
		$('#videoview').html('');
	},310);
}
