$(function() {
    window.setTimeout(function() { $('#flashMessage').hide('slow'); }, 3000);
    $('select#category').change(function() {
        if ($(this).val())  document.location.href = $(this).val()+'/quotes/';
    });

if ($('#clients').length>0) {
    $('#clients').cycle({
        fx:     'scrollLeft',
        speed:   1500,
        timeout: 6000,
        shuffle: 1,
        easeIn:  'easeInOutQuart',
        easeOut:  'easeInOutQuart',
    });

    $('#fmembers').cycle({
        fx:     'scrollRight',
        speed:   1500,
        timeout: 6000,
        shuffle: 1,
        easeIn:  'easeInOutQuart',
        easeOut:  'easeInOutQuart',
    });
}

    $('input.cal').css('width','100px').datepicker({ dateFormat: 'd MM yy', altFormat: 'yy-mm-dd' });

    $('.error_list').each(function() {
       $(this).closest('fieldset').css('border', '2px solid #EB5542');
    });
    
});
