DD_roundies.addRule('.round8', '8px');
var color1 = "#E7E7E7";
var color2 = "#F7F7F7";
var bcolor1 = "#DDDDDD";
var bcolor2 = "#F7F7F7";

$(document).ready(function() {
    $('#id_name').focus(function() {
        $(this).parent().children('ul').fadeOut();
        $(this).parent().css({
            backgroundColor: color1,
            borderTopColor: bcolor1,
            borderRightColor: bcolor1,
            borderBottomColor: bcolor1,
            borderLeftColor: bcolor1
        });
    });
    $('#id_email').focus(function() {
        $(this).parent().children('ul').fadeOut();
        $(this).parent().css({
            backgroundColor: color1,
            borderTopColor: bcolor1,
            borderRightColor: bcolor1,
            borderBottomColor: bcolor1,
            borderLeftColor: bcolor1
        });
    });
    $('#id_subject').focus(function() {
        $(this).parent().children('ul').fadeOut();
        $(this).parent().css({
            backgroundColor: color1,
            borderTopColor: bcolor1,
            borderRightColor: bcolor1,
            borderBottomColor: bcolor1,
            borderLeftColor: bcolor1
        });
    });
    $('#id_message').focus(function() {
        $(this).parent().children('ul').fadeOut();
        $(this).parent().css({
            backgroundColor: color1,
            borderTopColor: bcolor1,
            borderRightColor: bcolor1,
            borderBottomColor: bcolor1,
            borderLeftColor: bcolor1
        });
    });
    $('#id_name').blur(function() {
        $(this).parent().css({
            backgroundColor: color2,
            borderTopColor: bcolor2,
            borderRightColor: bcolor2,
            borderBottomColor: bcolor2,
            borderLeftColor: bcolor2
        });
    });
    $('#id_email').blur(function() {
        $(this).parent().css({
            backgroundColor: color2,
            borderTopColor: bcolor2,
            borderRightColor: bcolor2,
            borderBottomColor: bcolor2,
            borderLeftColor: bcolor2
        });
    });
    $('#id_subject').blur(function() {
        $(this).parent().css({
            backgroundColor: color2,
            borderTopColor: bcolor2,
            borderRightColor: bcolor2,
            borderBottomColor: bcolor2,
            borderLeftColor: bcolor2
        });
    });
    $('#id_message').blur(function() {
        $(this).parent().css({
            backgroundColor: color2,
            borderTopColor: bcolor2,
            borderRightColor: bcolor2,
            borderBottomColor: bcolor2,
            borderLeftColor: bcolor2
        });
    });
});
