/*
 * Created By:      Salman Riaz
 * Pre-Requiste:    JQuery, JQuery Validate, Validate Additional Methods, Validation.js
 * Created Date:    2010-04-23
 */
 
/*
jQuery(function($) {
    if( $("input.date").length ) {
        $("input.date").datepick({
            dateFormat: 'dd/mm/yyyy',
            showOnFocus: false,
            showTrigger: 'img#calImg'
        });

        // Need to remove once default format is set from db
        $("input.date").each(function(i){
            if( $.trim($(this).val()).length > 10 ) {
                $(this).val($.trim($(this).val()).substr(0, 10));
            }
        });
    }
});

*/
