var customSearchControl = null;
var vvdSearcher = null;

function ShowResults(searchControl, searcherObject){
	$('normal-page-content').addClass('hidden');
	$('search-results').removeClass('hidden');
}

function ClearResults(){
	customSearchControl.clearAllResults();
	$('normal-page-content').removeClass('hidden');
	$('search-results').addClass('hidden');
}

google.load('search', '1', {language : 'nl'});
google.setOnLoadCallback(function(){
	customSearchControl = new google.search.CustomSearchControl('014673285631385847025:uxs-auz8gd8');
	customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
	customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
	customSearchControl.setSearchCompleteCallback(null, ShowResults);
	var options = new google.search.DrawOptions();
	options.setSearchFormRoot('cse-search-form');
	customSearchControl.draw('cse', options);
}, true);