﻿$(document).ready(function() {
    $('input').focus(function() {
        $(this).css("background-color", "#eee");
        $(this).css("border", "1px solid #ba481b");
    });
    $('input').blur(function() {
        $(this).css("background-color", "#fff");
        $(this).css("border", "1px solid #7f9db9");
    });
    $('select').focus(function() {
        $(this).css("background-color", "#eee");
        $(this).css("border", "1px solid #ba481b");
    });
    $('select').blur(function() {
        $(this).css("background-color", "#fff");
        $(this).css("border", "1px solid #7f9db9");
    });
    $('textarea').focus(function() {
        $(this).css("background-color", "#eee");
        $(this).css("border", "1px solid #ba481b");
    });
    $('textarea').blur(function() {
        $(this).css("background-color", "#fff");
        $(this).css("border", "1px solid #7f9db9");
    });

    //Quiz
    $('#quizBlock ul li').click(function(e) {
        if (!($(this).parents().hasClass('clicked'))) {
            if (e.target.tagName == 'H5') {
                $(this).css('background-position', '0px -54px');
                $(this).siblings().css('background-position', '0px 1px').fadeTo('slow', .4);
                $(this).parents('ul').addClass('clicked');
            } else {
                $(this).siblings().css('background-position', '0px 1px');
                $(this).css('background-position', '0px -27px');
            }
        }
    });
});
