$(document).ready(function(){
	$("table.scheme td").each(function() {
		var text = $(this).text();
		if (text == 'Inställt' || text == 'Boka reservplats' || text == 'Fullbokat') {
			$(this).parent().remove();
		}
	})
	$("input:text").placeholder();
});

