Skip to content

Instantly share code, notes, and snippets.

View clutchski's full-sized avatar

Matt Perpick clutchski

View GitHub Profile
$(document).ready ->
onHoverStart = ->
$(this).animate({backgroundColor:'#7c9344'},'fast')
onHoverEnd = ->
$(this).animate({backgroundColor:'#7c9344'},'fast')
$('#menu li a').hover(onHoverStart, onHoverEnd)