/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(function(){
        jQuery.datepicker.setDefaults(
        jQuery.extend(jQuery.datepicker.regional["ru"])
    );
        jQuery("#dateInPicker").datepicker({
            showOn:'button',
            buttonText:'Показать календарь',
            buttonImage:'/images/design/calendar.jpg',
            buttonImageOnly:'true'
        });

        jQuery("#dateOutPicker").datepicker({
            showOn:'button',
            buttonText:'Показать календарь',
            buttonImage:'/images/design/calendar.jpg',
            buttonImageOnly:'true'
        });
    });



