/*
 * jQuery Efficient Extended Funtions
 *
 * Copyright (c) 2011 by www.lh.co.kr. All right reserved.
 *
 * NOTE: This script requires jQuery to work. Download jQuery at www.jquery.com
 * 
 * Date: 2011-07-01
 *
 */

(function($) {

	// 2011-07-01, Cjlee
	// 이미지 소스를 간단히 변경하기
	$.fn.replaceImage = function(str_before, str_after) {
		$(this).attr("src", $(this).attr("src").replace(str_before, str_after));
		return this;
	};

})(jQuery);
