/*
$(function(){
    $("div.already-customer input:text").focus(function(){
        $("div.already-customer").addClass("highlight");
        $("div.new-customer").removeClass("highlight");
    });
    $("div.new-customer input:text").focus(function(){
        $("div.new-customer").addClass("highlight");
        $("div.already-customer").removeClass("highlight");
    });
});
*/
