/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(function(){
    $('#new_customer_dg').hide();
    $('#show_register_dg').show();
    $('#show_register_dg').click(function() {
        $('#new_customer_dg').show();
        $('#show_register_dg').hide();
        $('#show_login_dg').hide();
    });
    $('#show_company_dg').show();
    $('#company_fields_dg').hide();
    $('#show_company_dg').click(function() {
        $('#company_fields_dg').show();
        $('#show_company_dg').hide();
    });
    $('#login_dg').hide();
    $('#show_login_dg').show();
    $('#show_login_dg').click(function() {
        $('#login_dg').show();
        $('#show_login_dg').hide();
        $('#show_register_dg').hide();
    });
});