﻿$(document).ready(
    function() {

        init();

    });


    function init() {


        $('#error-box').hide();
        $('#search-box-input').focus(function() {
            if ($(this).val() == 'Sök') {
                $(this).val('');
            }

        });

        $('#search-box-submit').click(function() {
            if ($('#search-box-submit').val().length() < 3) {
                alert('Ange minst 3 bokstäver');
                return false;
            } else {
                return true;    
            }
        });


    }

    function showErrorMessage(msg) {
        $('#error-box').html(msg);
        $('#error-box').show();
    }

    function hideErrorMessage() {
        $('#error-box').hide();
    }
