function openFilm (filmId) {
	if(jQuery('.open').length != 0) {
		//jQuery('.open').html("");
		jQuery('.open').removeClass('open');
	}
	jQuery('#clip_'+filmId).css('display', 'block');
	jQuery('#preview_'+filmId).css('display', 'none');
	jQuery('#clip_'+filmId).addClass('open');
	//jQuery('#clip_'+filmId).html(jQuery('#source_'+filmId).html());
	jQuery.ajax({
		type: "POST",
	    url: "http://www.streamer.bg/en/hit.go",
		data: "id="+filmId,
		success: function(msg){	
		}
	});

	return false;
}

function closeFilm (filmId) {
	jQuery('#clip_'+filmId).removeClass('open');
	jQuery('#preview_'+filmId).css('display', 'block');
	jQuery('#clip_'+filmId).css('display', 'none');
	jQuery('.open').removeClass('open');
	return false;
}
