function hideShow(el, x) { var _img = document.getElementById(x), div = $(el).next(); _img.src = div.is(':hidden')? 'images/up.jpg': 'images/down.jpg'; div.slideToggle('normal'); return false; }