﻿
// Google translate
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
	pageLanguage: 'sv',
	includedLanguages: 'da,en,sv',
	autoDisplay: false,
	layout: google.translate.TranslateElement.InlineLayout.SIMPLE
  }, 'google_translate_element');
}

// Google custom search in pageHeader NEEDS REAL CES FROM CAROLI GOOGLE ACCOUNT!!!!!!!!!!!!!!!!!
google.load('search', '1', {language : 'sv', style : google.loader.themes.MINIMALIST});

function inputFocus() {
	document.getElementById('query-input').style['background'] = '';
}

function inputBlur() {
	var queryInput = document.getElementById('query-input');
	if (!queryInput.value) {
	  queryInput.style['background'] =
		  '#eee';
	}
}

function init() {
	google.search.CustomSearchControl.attachAutoCompletion(
		'014839362382436414321:kqoazuppmzu',
		document.getElementById('query-input'),
		'two-page-form');
	inputBlur();
}

function submitQuery() {
	window.location = '/sokresultat/?q='
		+ encodeURIComponent(
			document.getElementById('query-input').value);
	return false;
}

google.setOnLoadCallback(init);
