﻿

$(document).ready(function () {
    //Center news image
    $("#productsnews img").hover(function () {
        $(this).stop().animate({ opacity: "0.7" }, 'fast');
    },
    function () {
        $(this).stop().animate({ opacity: "1" }, 'fast');
    });

});



