$(document).ready(function() {
    // home page slide show carousel
    $("#highlights #slides").cycle({
        timeout: 10000,
        pause: true
    });
    
    $("#contact-us-form").submit(function(){
        $("button").text("Sending...");
    });
    
    $('input[name="association_count"]').each(function(){
            $(this).clearingInput({
                text: '10', 
                blurClass: 'blur'
            });
    });
    
    $('input[name="name"]').each(function(){
            $(this).clearingInput({
                text: 'First Last',
                blurClass: 'blur'
            });
    });
    
    $('input[name="email"]').each(function(){
            $(this).clearingInput({
                text: 'john@example.com',
                blurClass: 'blur'
            });
    });
    
    $('input[name="phone"]').each(function(){
            $(this).clearingInput({
                text: '949 555 5555', 
                blurClass: 'blur'
            });
    });
});
