jQuery(document).ready(function(){ jQuery('#banner').cycle(); jQuery('#page-banner').cycle(); jQuery('#menu .nav').mouseover(function() { t = jQuery(this).find("img") t.attr('src',t.attr('src').replace('.jpg','-over.jpg')); }); jQuery('#menu .nav').mouseout(function() { t = jQuery(this).find("img") t.attr('src',t.attr('src').replace('-over.jpg','.jpg')); }); });