/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
jQuery(document).ready(function() { jQuery(".main-menu-image").delegate("img", "mouseover mouseout", function(e) { if (e.type == 'mouseover') { jQuery(".main-menu-image img").not(this).dequeue().animate({opacity: "0.3"}, 300); } else { jQuery(".main-menu-image img").not(this).dequeue().animate({opacity: "1"}, 300); } }); });