$(document).ready(function(){ var i=1; $.fn.replaceEmoAttr = function(emo){ $(this).removeAttr('src'); $(this).attr('src', 'http://' + username + '.exteen.com/images/emo/e' + emo + '.gif'); }; $('form > img[src*=e\\/e]').each(function(){ $(this).removeAttr('src'); $(this).attr('src', 'http://' + username + '.exteen.com/images/emo/e' + i + '.gif'); i++;}); $('.comment img[src*=e1.gif]').replaceEmoAttr("1"); $('.comment img[src*=e2.gif]').replaceEmoAttr("2"); $('.comment img[src*=e3.gif]').replaceEmoAttr("3"); $('.comment img[src*=e4.gif]').replaceEmoAttr("4"); $('.comment img[src*=e5.gif]').replaceEmoAttr("5"); $('.comment img[src*=e6.gif]').replaceEmoAttr("6"); $('.comment img[src*=e7.gif]').replaceEmoAttr("7"); $('.comment img[src*=e8.gif]').replaceEmoAttr("8"); $('.comment img[src*=e9.gif]').replaceEmoAttr("9"); $('.comment img[src*=e10.gif]').replaceEmoAttr("10"); $('.comment img[src*=e11.gif]').replaceEmoAttr("11"); $('.comment img[src*=e12.gif]').replaceEmoAttr("12"); $('.comment img[src*=e13.gif]').replaceEmoAttr("13"); $('.comment img[src*=e14.gif]').replaceEmoAttr("14"); $('.comment img[src*=e15.gif]').replaceEmoAttr("15"); $('.comment img[src*=e16.gif]').replaceEmoAttr("16"); $('.comment img[src*=e17.gif]').replaceEmoAttr("17"); });