$(function() {
  $('.jq_hover a').each(function() {
    $(this).hover(
      function() {
        $(this).stop().animate({
          opacity: 1.0
        }, 500);
      },
      function() {
        $(this).stop().animate({
          opacity: 0.7
        }, 1000);
      })
  });
});
$(function() {
  $('.jq_hover2 a').each(function() {
    $(this).hover(
      function() {
        $(this).stop().animate({
          opacity: 1.0
        }, 300);
      },
      function() {
        $(this).stop().animate({
          opacity: 0.8
        }, 400);
      })
  });
});

Shadowbox.init();

