var circMod = (copy.circ_modifier) ? copy.circ_modifier.toLowerCase() : '';
/* statelib has some special circ rules */
+
+
if( isOrgDescendent('STATELIB', copy.circ_lib.id) ) {
if(isTrue(copy.ref))
result.durationRule = '14_days_2_renew';
-}
-
-/* Newton county gives their DVD's for $.10 a day */
-if( isOrgDescendent('NCLS', copy.circ_lib.id) && circMod == 'dvd' )
+} else if( isOrgDescendent('NCLS', copy.circ_lib.id) && circMod == 'dvd' )
result.recurringFinesRule = '10_cent_per_day';
+else if( isOrgDescendent('LEE', copy.circ_lib.id) && circMod == 'video' )
+ result.recurringFinesRule = '50_cent_per_day';
+
+
checkDurationExceptions();