//jQuery.noConflict();

Cufon.replace('.top-level', {hover: true});

function form_input_classes(){

    jQuery('input[type="text"]').addClass('text');
    jQuery('input[type="password"]').addClass('text');
    jQuery('input[type="checkbox"]').addClass('checkbox');
    jQuery('input[type="radio"]').addClass('radiobutton');
    jQuery('input[type="submit"]').addClass('submit');
    jQuery('input[type="image"]').addClass('buttonImage');

}

jQuery(document).ready(function() {
    form_input_classes();
    form_labelize();
    jQuery('#image-cycle').cycle({
      	fx: 'fade',
        timeout: 4000
    });

    jQuery('#mission-statement').cycle({
      	fx: 'scrollLeft',
        timeout: 6000
    });

    jQuery('ul.sf-menu').superfish({ 
        delay:       1000,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed:       'fast',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    });

});

function form_labelize(){  jQuery(".labelize input:text").clearingInput(); } 