I'm not sure how you are going to shine? If you just change the color, you can do something like below.
$(document).ready(function(){
$('#glow').animate({backgroundColor:'green'});
});
Then you can add a few box-shadowto add a glow effect.
-webkit-box-shadow: 0px 0px 5px 5px rgba(0, 150, 0, 0.3);
box-shadow: 0px 0px 5px 5px rgba(0, 150, 0, 0.3);
Please see in this example the fiddle of the animated background color and shadow.
EDIT
, , , .
fiddle, , ... , .