$(document).ready(function() {
   	init();
});

function init(){
	$("#top-content").addClass("scripted");
	$("#searchsubmit").addClass("hide");
	$("#s").val('Fyll i sökord och tryck enter');
	$("#searchform label").html('Sök efter: ');

	$("#s").focus(function() {
		$(this).val('');
	});
	
	$("#s").blur(function() {
		if($(this).val() == '') {
			$(this).val('Fyll i sökord och tryck enter');
		}
	});
	
	
	$("a").filter(function() {
    	return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');

	
}
