
		try{
		var arrCommonAD = [{link:"http://news.hankooki.com/photoon/netizen_gallery/list.php",img:"http://photo.hankooki.com/adman/image/2009/12/dica_0912_22050.gif"},{link:"http://www.hankooki.com/common/fortune_korea/index.htm",img:"http://photo.hankooki.com/adman/image/2009/08/fortune_22050_090826.gif"},{link:"http://m.hankooki.com",img:"http://photo.hankooki.com/adman/image/2011/01/mhankook_110112_22050.jpg"},{link:"http://edu.hankooki.com/sub8_1.htm",img:"http://img.hankooki.com/ad_banner/2012/02/edu_22050_120214.gif"},{link:"http://stock.hankooki.com/cheetah.htm",img:"http://img.hankooki.com/ad_banner/2012/01/ticker_22050_120130.gif"},{link:"http://edu.hankooki.com/sub7_1.php",img:"http://img.hankooki.com/ad_banner/2012/02/edu_22050_120208.gif"},{link:"http://myhome.hankooki.com/cook/v01/group_intro.htm",img:"http://img.hankooki.com/ad_banner/2012/02/myhome_22050_120207.gif"},{link:"http://event.hankooki.com/eventView.php?media=all&gscon_no=4434427",img:"http://img.hankooki.com/ad_banner/2012/01/stock11_22050_120110.gif"},{link:"http://plus.sentv.co.kr/event/stock",img:"http://photo.hankooki.com/adman/image/2012/02/20120209_hki_top.jpg"},{link:"http://www.runtv.co.kr",img:"http://img.hankooki.com/ad_banner/2012/02/runtv_22050_120220.gif"},{link:"http://sangjo.hankooki.com/",img:"http://img.hankooki.com/ad_banner/2012/01/22050_120118.gif"}]
		var ad_id;
		var ad_cnt = arrCommonAD.length;
		var t_random = Math.floor(Math.random() * arrCommonAD.length);

		function Slide(type){
			if(type=='play') ad_id = setInterval('ChangePhoto()',5000);
			else if(type=='stop') clearInterval(ad_id);
		}

		function ChangePhoto(){
			t_random = t_random+1;
			if(t_random > (ad_cnt-1)) t_random = 0;
			RandomAD(t_random);
		}

		function RandomAD(tview){
			for (t=0;t<ad_cnt;t++){
			eval('document.getElementById("AdImg'+t+'")').style.display = 'none';
		}
		eval('document.getElementById("AdImg'+tview+'")').style.display = 'block';
		}
		for(i=0;i<ad_cnt;i++){
			document.write('<div id="AdImg'+i+'"><a href="'+arrCommonAD[i].link+'" onFocus="this.blur()" target="_blank"><img src="'+arrCommonAD[i].img+'" width="220" height="50" border="0" onmouseover=Slide("stop"); onmouseout=Slide("play");></a></div>');
		}
		Slide('play');
		RandomAD(t_random);
		}catch(e){}
	
