﻿$(document).ready(function() {
    $(".searchForm").focus(function() {        
        if ($(this).val() == "sök...") {
            $(this).css("color", "#333333");
            $(this).val(""); 
        }
    });
    $(".searchForm").blur(function() {
        if ($(this).val() == "sök...") {
            $(this).css("color", "");
        }
        if ($(this).val() == "") {
            $(this).val("sök...");
            $(this).css("color", "");
        }
    });
});
