// JavaScript Document
$(function () {
    $('a').hover(function () {
        $(this).find("img").animate({ marginTop: '2px', marginBottom: '6px', opacity: '1.0' }, { queue: true, duration: 200 });
    }, function () {
        $(this).find("img").animate({ marginTop: '4px', marginBottom: '4px', opacity: '0.7' }, { queue: true, duration: 100 });
    });
});

