/* "paragraph-1"와 같은 형태의 ID에서 마지막 부분에 있는 숫자 ID를 꺼내주는 함수.
 */
$.iNumberId = function(elementId){
    var temp = elementId.split("-");
    return temp[temp.length -1];
}