document.observe("dom:loaded", function() {

	if (Prototype.Browser.WebKit) {
		
		$('soketekst').setAttribute("type", "search");
		$('soketekst').setAttribute("placeholder", "Søketekst");
		$('soketekst').setAttribute("autosave", "aurlien.net/hybelmat");
		$('soketekst').setAttribute('results', '5');
		$('login').setStyle({ '-webkit-border-radius': '0.5em', '-webkit-box-shadow': '0.4em 0.4em 0.4em #4a5f2d' });
		$$('h1').each(function(s) { s.setStyle({ 'text-shadow': 'black 0.1em 0.1em 0.15em' }) });

	} else {
	
		if (Prototype.Browser.Gecko) {
			$('login').setAttribute('style', '-moz-border-radius: 0.5em;');
		}
	
		$('soketekst').setStyle({ 'color': '#888' });
		$('soketekst').setAttribute("value", "Søketekst");
	
		$('soketekst').observe('focus', function() {
			if ($('soketekst').getValue()=="Søketekst") {
				$('soketekst').setStyle({ 'color': 'black' });
				$('soketekst').setAttribute("value", "");
			}
		});

		$('soketekst').observe('blur', function() {
			if ($('soketekst').getValue()=="") {
				$('soketekst').setStyle({ 'color': '#888' });
				$('soketekst').setAttribute("value", "Søketekst");
			}
		});
	
	}
	
	$('sok').observe('submit', function(evt) {
		evt.stop();
		if($('soketekst').getValue()!="Søketekst" && $('soketekst').getValue()!="") {
			window.location="søk/"+$('soketekst').getValue();
		}
	});
	
	var pageTracker = _gat._getTracker("UA-3110123-1");
  pageTracker._initData();
  pageTracker._trackPageview();

});
