function rounded_box_template(){ var images_relative_url = "http://avoo.net/images"; // ::: Create entities var table = document.createElement("table"); var tbody = document.createElement("tbody"); var row_1 = document.createElement("tr"); var row_2 = document.createElement("tr"); var row_3 = document.createElement("tr"); var cell_1 = document.createElement("td"); var cell_2 = document.createElement("td"); var cell_3 = document.createElement("td"); var cell_4 = document.createElement("td"); var cell_5 = document.createElement("td"); var cell_6 = document.createElement("td"); var cell_7 = document.createElement("td"); var cell_8 = document.createElement("td"); var cell_9 = document.createElement("td"); var img_tl = document.createElement("img"); var img_tr = document.createElement("img"); var img_bl = document.createElement("img"); var img_br = document.createElement("img"); // ::: Link entities cell_1.appendChild(img_tl); cell_3.appendChild(img_tr); cell_7.appendChild(img_bl); cell_9.appendChild(img_br); row_1.appendChild(cell_1); row_1.appendChild(cell_2); row_1.appendChild(cell_3); row_2.appendChild(cell_4); row_2.appendChild(cell_5); row_2.appendChild(cell_6); row_3.appendChild(cell_7); row_3.appendChild(cell_8); row_3.appendChild(cell_9); tbody.appendChild(row_1); tbody.appendChild(row_2); tbody.appendChild(row_3); table.appendChild(tbody); // ::: Set attributes for each entity table.border = "0"; table.cellSpacing = "0"; table.cellPadding = "0"; cell_1.style.width = "11px"; cell_1.style.height = "11px"; cell_3.style.width = "11px"; cell_3.style.height = "11px"; cell_7.style.width = "11px"; cell_7.style.height = "11px"; cell_9.style.width = "11px"; cell_9.style.height = "11px"; img_tl.border = "0"; img_tl.src = images_relative_url + "/rb_tl.png"; img_tr.border = "0"; img_tr.src = images_relative_url + "/rb_tr.png"; img_bl.border = "0"; img_bl.src = images_relative_url + "/rb_bl.png"; img_br.border = "0"; img_br.src = images_relative_url + "/rb_br.png"; cell_2.style.height = "11px"; cell_2.style.backgroundImage = "url(" + images_relative_url + "/rb_tm.png)"; cell_2.style.backgroundRepeat = "repeat-x"; cell_4.style.width = "11px"; cell_4.style.backgroundImage = "url(" + images_relative_url + "/rb_ml.png)"; cell_4.style.backgroundRepeat = "repeat-y"; cell_6.style.width = "11px"; cell_6.style.backgroundImage = "url(" + images_relative_url + "/rb_mr.png)"; cell_6.style.backgroundRepeat = "repeat-y"; cell_8.style.height = "11px"; cell_8.style.backgroundImage = "url(" + images_relative_url + "/rb_bm.png)"; cell_8.style.backgroundRepeat = "repeat-x"; return table; } function fill_rounded_box(rounded_box, content){ $(rounded_box).children(":eq(0)").children(":eq(1)").children(":eq(1)").append(content); }