function fileSearch(needle, list) {
	search = strtolower(needle);
	$(list).each(function() {
		var haystack = strtolower($(this).find('a').attr('data-vidtitle') + ' ; ' + $(this).find('a').attr('data-vidtype'));
		if (strstr(haystack, search) > -1) {
			$(this).hide();			
		} else {
			$(this).show();
		}
	});
}
