// dfsd Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
(function(){

    /*    jQuery.noConflict();*/
    jQuery(document).ready(function(){
    
        $.("table[class=grid],:not[class=nosort]").tablesorter({
            headers: {
                0: {
                    sorter: false
               }
            },
            sortMultiSortKey: 'altKey',
            widgets: ['zebra']
        }).tablesorterPager({
            container: jQuery("#pager")
        });
        
        
        
        jQuery("table[class=form_grid]:first").tablesorter({
            headers: {
                0: {
                    sorter: false
                }
            },
            sortMultiSortKey: 'altKey',
            widgets: ['zebra']
        });
        
        
        
        jQuery("#notice").click(function(){
            jQuery(this).fadeOut(700)
        })
        
        jQuery('form').focus_first();		
        
    })
	
    jQuery(".date").datepicker();
    
   
})();
