﻿$(document).ready(function() {
    setFocusColors();
    $("[id$='txtFirstName']").focus();
});

function setFocusColors() {
    $("input[type=text]").focus(function() {
        // Select field contents
        $(this).css({ 'background-color': '#ffcc66' });
    });
    $("input[type=text]").blur(function() {
        // Select field contents
        $(this).css({ 'background-color': 'white' });
    });
    $("textarea").focus(function() {
        // Select field contents
        $(this).css({ 'background-color': '#ffcc66' });
    });
    $("textarea").blur(function() {
        // Select field contents
        $(this).css({ 'background-color': 'white' });
    });
}

function showShippingAddress() {
    $("#shippingAddress").show();
    $("[id$='txtShippingAddressName']").focus();        
}

function hideShippingAddress() {
    $("#shippingAddress").hide();
}

function showBankeinzug() {
    $("#panelBankeinzug").show();
    $("[id$='txtBLZ']").focus();
}

function hideBankeinzug() {
    $("#panelBankeinzug").hide();
}
