/*Används på startsidan för bildspel */
$(function () {
    $('#slider_start').bxSlider({ auto: true, controls: false, easing: 'jswing', pause: 7000, speed: 700, autoDirection: 'prev' });
    /* Sök */
    $('.topsearch').each(function () {
        $(this).attr('defaultVal', $('#ctl00_ctl05_m_searchstring').val());
        $(this).val($(this).attr('defaultVal'));
    });
    $('.topsearchb').each(function () {
        $('.topsearchb').attr('disabled', true);
    });
    $('.topsearch').focus(function () {
        if ($(this).val() == $(this).attr('defaultval')) {
            $(this).val('');
            $(this).toggleClass('topsearch_active');
            $('.topsearchb').attr('disabled', false);
        }
    });
    $('.topsearch').blur(function () {
        if ($(this).val() == '') {
            $(this).val($(this).attr('defaultval'));
            $(this).toggleClass('topsearch_active');
            $('.topsearchb').attr('disabled', true);
        }
    });
});
