function initJQuery() {
    

    jQuery(document).ready(function($) {
        $('.clearOnClick').live('click', function(){
            $(this).removeClass('clearOnClick');
            this.value='';
        });
        $('#showClientLogin').live('click', function(){
            $(this).hide();
            $('#clientLoginForm').show();
        });
    });



}
