(function($) {
    
    
    $(function() {
    
    
        // Kill links to self
        $('a').each(function(i, item) {
            if (item.href == ('' + window.location).replace(/#.*$/, '').replace(/\?.*$/, '')) {
                $(item).addClass('current');
            }
        });
        
        // give required field labels a class for styling
        $('input.required, select.required, textarea.required').parent('li, tr').find('label, th').addClass('required');


        // smooth scrolling
        //$.localScroll({duration: SCROLLTIMER});
        
        $('input:checkbox').addClass('checkbox');
       
        //$('.customselect select, select.customselect').customSelect(); 
        
               
        
        if (!Modernizr.input.placeholder){
            $('input[placeholder]').placeholder();
        }



        
    });
    
    
    
})(jQuery);
