영원한사랑

소스는 아주 간단합니다.

접속시마다 배경 이미지가 자동으로 랜덤하게 변합니다.

아래 이미지 경로만 추가하면 되여. 설명은 필요 없겠죠.

<SCRIPT LANGUAGE="JavaScript">
<!--
var bg_img = ["http://oxtag.com/html/img/bgm_back.gif", "http://oxtag.com/html/img/bg1.gif", "http://oxtag.com/html/img/flag_korea.gif", "http://oxtag.com/html/img/model.jpg", "http://oxtag.com/html/img/angel.gif"];
var index=Math.round(bg_img.length*Math.random());
document.write('<body background="'+bg_img[index]+'" bgcolor="#FFFFFF">')
//-->
</SCRIPT>