swfobject.embedSWF("./swf/tanieserwery-04.swf", "ts-main-animation", "1000", "280", "9.0.0", "./swf/expressInstall.swf");

$(document).ready(function()
{

    $(".ts-menu a").hover(
        function() { $(this).animate({backgroundPosition : "0 0"}, 250); },
        function() { $(this).animate({backgroundPosition : "0 -60px"}, 250); }
    );

    $(".ts-textfield input").focus(function()
    {
        $(this).parent().css('background-position', '0 -29px');
    }).blur(function()
    {
        $(this).parent().css('background-position', '0 0');
    });

    $(".ts-submit-button input").hover(
        function() { $(this).css('background-position', '0 100%'); },
        function() { $(this).css('background-position', '0 0'); }
    );
});

function password_Validator2(theForm)
{

    if (theForm.domena.value == "")
    {
        alert("Wpisz nazwę domeny.");
        theForm.domena.focus();
        return (false);
    }
    if (theForm.roz.value == "")
    {
        alert("Nie wybrałeś rozszerzenia");
        theForm.roz.focus();
        return (false);
    }

    return (true);
}