var $j = jQuery.noConflict();

$j(document).ready(function(){
    $j("#client-detail-photo").css("background","red");


    // Duplicate code for Druapl/Magento

    $j.fn.clearField = function() {

        return this.each(function() {
            $j(this).focus(function() {
                if( this.value == this.defaultValue ) {
                    this.value = "";
                }
            }).blur(function() {
                if( !this.value.length ) {
                    this.value = this.defaultValue;
                }
            });
        });

    };

    $j(".search").clearField();

    // End duplicate code for Druapl/Magento


});