﻿$(document).ready(function() { $("img.click").click(function() { $(this).parent().children(".toggle").slideToggle(); this.src = (this.src.search('expand') > -1) ? this.src.replace('expand', 'collapse') : this.src.replace('collapse', 'expand'); }); });

