﻿$(document).ready(function () {
    $(".content table > tbody > tr:odd").addClass("even");
    $(".content table tbody tr td:last-child").addClass("last");

    //Automaticka zmena textu ve formularovem poli pro vyhledavani
    var searchTerm = $('#headersearch .text').val();
    $('#headersearch .text').focus(function () { if ($(this).val() == searchTerm) $(this).val(''); });
    $('#headersearch .text').blur(function () { if ($(this).val() == '') $(this).val(searchTerm); });

    //Automaticka zmena textu ve formularovem poli pro prihlaseni k odberu newsletteru
    var enterEmail = $('#hpsignup .text').val();
    $('#hpsignup .text').focus(function () { if ($(this).val() == enterEmail) $(this).val(''); });
    $('#hpsignup .text').blur(function () { if ($(this).val() == '') $(this).val(enterEmail); });
});
