$(document).ready(function(){ $('#menu li').mouseover(function() { t = $(this).find("img.hover"); t.attr('src',t.attr('src').replace('.png','-over.png')); }); $('#menu li').mouseout(function() { t = $(this).find("img.hover"); t.attr('src',t.attr('src').replace('-over.png','.png')); }); $('#s').toggleVal(); $('.wpcf7 input').toggleVal(); $('.wpcf7 textarea').toggleVal(); });