﻿$(document).ready(function() {
    $('.search .ms-sbrow .ms-sbcell input.ms-sbplain').val('Indtast søgeord');

    if ($('.print a').length > 0) {
        $('.print a').click(function(event) {
            event.preventDefault();
            window.print();
        });
    }

    $('.wpsekundaerbudskab,.textCta').hover(function() {
        $(this).attr('title', $(this).find('a').attr('title'));
    });

    $('.wpsekundaerbudskab,.textCta').click(function() {
        window.location.href = $(this).find('a').attr('href');
    });


    // empty on focus and blur function for the search field
    $('.search .ms-sbrow .ms-sbcell input.ms-sbplain').each(function() {
        var default_value = this.value;
        $(this).focus(function() {
            if (this.value == default_value) {
                this.value = '';
            }
        });
        $(this).blur(function() {
            if (this.value == '') {
                this.value = default_value;
            }
        });
    });

    //
}); 
