﻿$j = jQuery.noConflict();




$j(document).ready(function() {





$j(".glow").hover(function() {
$j(this).fadeTo(200, 1.0); // This sets the opacity to 100% on hover
    }, function() {
    $j(this).fadeTo(400, 0.9); // This sets the opacity back to 70% on mouseout
});






    
    
    
});