/* Hover Light
========================================== */
$(function() {
 $('.hoverLight').hover(function(){
  $(this).animate({'opacity': '0.7'}, 200);
 }, function(){
  $(this).animate({'opacity': '1'}, 200);
 }).click(function(){
  $(this).animate({'opacity': '1'}, 200);
 });
});
