google.load("search", "1");

    function initGoogleSearch() {
		var searchString = Url.decode(document.location.search);
		searchString = searchString.substring(1);
		var nvPair = searchString.split("=");
		var parsedSearchString = nvPair[1];
		var searchControl = new google.search.SearchControl();
		options = new google.search.SearcherOptions();
		options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
		var siteSearch = new google.search.WebSearch();
		siteSearch.setUserDefinedLabel("Flytoget.no");
		siteSearch.setSiteRestriction("flytoget.no");
		siteSearch.setUserDefinedClassSuffix("siteSearch");
		searchControl.addSearcher(siteSearch, options);
		var graffikSearch = new google.search.ImageSearch();
		graffikSearch.setUserDefinedLabel("Graffik");
		graffikSearch.setSiteRestriction("flytoget.no");
		graffikSearch.setUserDefinedClassSuffix("graffikSearch");
		searchControl.addSearcher(graffikSearch, options);
		var drawOptions = new google.search.DrawOptions();
		drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED);
		searchControl.draw(document.getElementById("searchcontrol"), drawOptions);
		searchControl.execute(parsedSearchString);
    }
    
google.setOnLoadCallback(initGoogleSearch);