<!--
			function Init1()
			{
				switchSlides1('promotionItem','promotion_item1_');
			}
			function Init2()
			{
				if (endFrame1>1)
					switchSlides1('promotionItemK','promotion_item2_'); 
				if (endFrame2>1)
					switchSlides2('promotionItemV','promotion_item3_');
				if (endFrame3>1)
					switchSlides3('promotionItemS','promotion_item4_');
				if (endFrame4>1)
					switchSlides4('promotionItemT','promotion_item5_');		
				if (endFrame5>1)
					switchSlides5('promotionItemX','promotion_item6_');		
				if (endFrame6>1)
					switchSlides6('promotionItemC','promotion_item7_');		

			}

			/* slideShow */
			var isRunning = true;
			var delay = 5000;
			var endFrame1 = 7;
			var endFrame2 = 7;
			var endFrame3 = 7;
			var endFrame4 = 7;
			var endFrame5 = 7;
			var endFrame6 = 7;
			var endFrame7 = 7;

			var frame1 = 7;
			function switchSlides1(slideId,imgTabPref) {
				if (isRunning) {
					document.getElementById(slideId + frame1).style.display = 'none';
					document.getElementById(slideId + frame1 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame1 + '.jpg';
					if (frame1 == endFrame1) {
						frame1 = 1;
					}
					else {
						frame1++;
					}
					document.getElementById(slideId + frame1).style.display = 'block';
					document.getElementById(slideId + frame1 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame1 +'.jpg';
					setTimeout("switchSlides1('" + slideId + "','" + imgTabPref + "')",delay);
				}
			}

			var frame2 = 5;
			function switchSlides2(slideId,imgTabPref) {
				if (isRunning) {
					document.getElementById(slideId + frame2).style.display = 'none';
					document.getElementById(slideId + frame2 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame2+'.jpg';
					if (frame2 == endFrame2) {
						frame2 = 1;
					}
					else {
						frame2++;
					}
					document.getElementById(slideId + frame2).style.display = 'block';
					document.getElementById(slideId + frame2 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame2+'.jpg';
					setTimeout("switchSlides2('" + slideId + "','" + imgTabPref + "')",delay);
				}
			}
			var frame3 = 5;
			function switchSlides3(slideId,imgTabPref) {
				if (isRunning) {
					document.getElementById(slideId + frame3).style.display = 'none';
					document.getElementById(slideId + frame3 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame3+'.jpg';
					if (frame3 == endFrame3) {
						frame3 = 1;
					}
					else {
						frame3++;
					}
					document.getElementById(slideId + frame3).style.display = 'block';
					document.getElementById(slideId + frame3 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame3+'.jpg';
					setTimeout("switchSlides3('" + slideId + "','" + imgTabPref + "')",delay);
				}
			}
			var frame4 = 5;
			function switchSlides4(slideId,imgTabPref) {
				if (isRunning) {
					document.getElementById(slideId + frame4).style.display = 'none';
					document.getElementById(slideId + frame4 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame4+'.jpg';
					if (frame4 == endFrame4) {
						frame4 = 1;
					}
					else {
						frame4++;
					}
					document.getElementById(slideId + frame4).style.display = 'block';
					document.getElementById(slideId + frame4 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame4+'.jpg';
					setTimeout("switchSlides4('" + slideId + "','" + imgTabPref + "')",delay);
				}
			}	
			
			var frame5 = 5;
			function switchSlides5(slideId,imgTabPref) {
				if (isRunning) {
					document.getElementById(slideId + frame5).style.display = 'none';
					document.getElementById(slideId + frame5 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame5+'.jpg';
					if (frame5 == endFrame5) {
						frame5 = 1;
					}
					else {
						frame5++;
					}
					document.getElementById(slideId + frame5).style.display = 'block';
					document.getElementById(slideId + frame5 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame5+'.jpg';
					setTimeout("switchSlides5('" + slideId + "','" + imgTabPref + "')",delay);
				}
			}
			
			var frame6 = 5;
			function switchSlides6(slideId,imgTabPref) {
				if (isRunning) {
					document.getElementById(slideId + frame6).style.display = 'none';
					document.getElementById(slideId + frame6 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame6+'.jpg';
					if (frame6 == endFrame6) {
						frame6 = 1;
					}
					else {
						frame6++;
					}
					document.getElementById(slideId + frame6).style.display = 'block';
					document.getElementById(slideId + frame6 + 'tab').src = 'images/AHFSkin/' + imgTabPref + frame6+'.jpg';
					setTimeout("switchSlides6('" + slideId + "','" + imgTabPref + "')",delay);
				}
			}
			
			function showPromotion(slideId,imgTabPref,thisTab,allTab) {
				isRunning = false;
				for (var i = 1; i <= allTab; i++) {
					if (i != thisTab) {
						document.getElementById(slideId + i).style.display = 'none';
						document.getElementById(slideId + i + 'tab').src = 'images/AHFSkin/' + imgTabPref + i+'.jpg';
					} else {
						document.getElementById(slideId + i).style.display = 'block';
						document.getElementById(slideId + i + 'tab').src = 'images/AHFSkin/' + imgTabPref + i+'.jpg';
					}
				}
			}
					Event.observe(window, 'load', Init1, false);
		//-->
