$("#img_ad1").bind('click', function()
	{
		
		moveandshowdiv('div_ad',1);
		clearInterval(m_tAutoImgShow);
	});
	
	 $("#img_ad2").bind('click', function()
	{
			moveandshowdiv('div_ad',2);
			clearInterval(m_tAutoImgShow);
	});
	
		$("#img_ad3").bind('click', function()
	{
			moveandshowdiv('div_ad',3);
			clearInterval(m_tAutoImgShow);
	});
		

$("#img_ad4").bind('click', function()
	{
			moveandshowdiv('div_ad',4);
			clearInterval(m_tAutoImgShow);
	});


$(document).ready(function(){
	var nShowImgID = 1;
	var m_tAutoImgShow;
	$(document).ready(function(){
	$.extend({
	   show:function(){
			nShowImgID++;
			if ( nShowImgID > 5)
				nShowImgID = 1;
			moveandshowdiv('div_ad',nShowImgID)
	   }
	});
	m_tAutoImgShow = setInterval("$.show()",8000);
});
	
});









 $("#img_article").bind('click',function()
 {
	$("#Article").css("display","");
	$("#faq").css("display","none");
});

 $("#img_faq").bind('click',function()
 {
	$("#Article").css("display","none");
	$("#faq").css("display","");
});
