function getVideo(id) {
	$.ajax({
				type : 'POST',
				url : 'getVideoInfo.php',
				dataType : 'html',
				data: {
					videoid : id							
				},
				success : function(data){
					$('#filmtext').html("<br /><br /><br />"+data+"<br /><br />");
					$('#filmtext').slideDown(1500);
				},
				error : function(XMLHttpRequest, textStatus, errorThrown) {
					$('#filmtext').html("<br /><br />Kunde inte ladda informationen om videoklippet.<br /><br />"+textStatus);
					$('#filmtext').slideDown(1500);						
				}
			});
}	

function hideText() {
	$("#filmtext").slideUp(500);
}
		

