$(document).ready(function() {

    $('.gallery a').lightBox({
        fixedNavigation:true
    });

    $('.lightbox a[href*=".png"], .lightbox a[href*=".gif"], .lightbox a[href*=".jpg"]').lightBox({
        fixedNavigation:true
    });

    $('.cycle').cycle({
        fx: 'fade',
        speed:  2500
    });

/*
    $('.altcycle').cycle({
        fx: 'scrollUp',
        speed:  2000
    });
*/
    /*allow images to be removed*/
    $('.remove_image').live('click', function() {
        $(this).parents('.row').remove();
        return false;
    });

    $('#check_all').live('click', function() {
        $('#customer_form').find('input:checkbox').attr('checked', 'checked');
        return false;
    });

});
