﻿window.onload = function() {
	srchPhrase(document.getElementById('s'), 'Ange sökord');
}

function srchPhrase(elem, val) {
	elem.style.color = '#cacaca';
	elem.value = val;
	elem.onfocus = function() {
		if(this.value == val) {
			this.style.color = '';
			this.value = '';
		}
	}
	elem.onblur = function() {
 		if(this.value == '') {
			this.style.color = '#cacaca';
			this.value = val;
		}
	}
}

$(function() {
	$('#facebook').tipsy({gravity: 'n'});
	$('#twitter').tipsy({gravity: 'n'});
	$('#rss').tipsy({gravity: 'n'});
	$('#blogg').tipsy({gravity: 'n'});
});
