Your crystal is 32MHZ.
Set TMR1 to use the internal clock as its source,
Set TMR1 pre-scaler to 8
Load the value 0xBEE9 in to TMR1. (TMR1H = 0xBE; TMR1L = 0xE9
Enable TMR1 interrupts and then GIE.
You now have an interrupt after 0.016663 seconds (= 60.01Hz)
Inside the ISR, reload TMR1 with the same value again then set a variable, lets call it "SixtyHz".
Now in the main() code loop keep checking to see if "SixtyHz" has been set, if it has, reset it and us it in the same way you used your external 60HZ signal.
Brian.