$(document).ready(function() {
	setInterestTable();
});

function setInterestTable() {
	$('input.category').click(function() {
		var checkedStatus = $(this).attr('checked');
		if(checkedStatus) {
			$("tr[class*='" + $(this).val() + "']").removeClass("hide");
			$("input[parent='" + $(this).val() + "']").attr("checked", 'true');

			$('.scroll').jScrollPane({scrollbarOnLeft:true});
		} else {
			$("tr[class*='" + $(this).val() + "']").addClass("hide");
			$("input[parent='" + $(this).val() + "']").removeAttr("checked");
		}
	});
}

function openPopup() {
	window.name = 'faSearch';
	var top  = (screen.height-700) / 2;
	var left  = (screen.width-800) / 2;
	var popup = window.open('/vacature/search/interest','Zoeken','width=800,height=700,scrollbars=yes,top=' + top + ',left=' + left +'\'');
}